Browse Source
[extractor/generic] Make _search_json_ld non fatal
master
Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
1 deletions
-
youtube_dl/extractor/generic.py
|
|
@ -2241,7 +2241,7 @@ class GenericIE(InfoExtractor): |
|
|
|
|
|
|
|
# Looking for http://schema.org/VideoObject |
|
|
|
json_ld = self._search_json_ld( |
|
|
|
webpage, video_id, default=None, expected_type='VideoObject') |
|
|
|
webpage, video_id, fatal=False, expected_type='VideoObject') |
|
|
|
if json_ld and json_ld.get('url'): |
|
|
|
info_dict.update({ |
|
|
|
'title': video_title or info_dict['title'], |
|
|
|