youtube-dl

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

commit 395c74615c58f5f1b2e462786d6f4d8bab1a313a
parent 3dc240e8c659112a12e8bd1260c04db9f50f1b61
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon,  8 Aug 2016 21:49:27 +0700

Revert "[extractor/generic] Make _search_json_ld non fatal"

This reverts commit 958849275f1c6072c712e8d611294a762fadc7f0.

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, fatal=False, expected_type='VideoObject') + webpage, video_id, default=None, expected_type='VideoObject') if json_ld and json_ld.get('url'): info_dict.update({ 'title': video_title or info_dict['title'],