youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 958849275f1c6072c712e8d611294a762fadc7f0
parent 998f0944526658ae19f29fd4ca04391a5a1ac027
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  7 Aug 2016 19:04:22 +0700

[extractor/generic] Make _search_json_ld non fatal

Diffstat:
Myoutube_dl/extractor/generic.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/generic.py b/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'],