X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Ffunnyordie.py;h=56e079288d7c19a24c8bceead6675ac1be1ed415;hb=93d020dd653bb783de7a8524e1255f76dc5464e3;hp=5522e4954952521e56ab532ffaa9e7336bc9eb71;hpb=60cc4dc4b49c6ebd4a86a4d7f998133474662eee;p=youtube-dl.git diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py index 5522e4954..56e079288 100644 --- a/youtube_dl/extractor/funnyordie.py +++ b/youtube_dl/extractor/funnyordie.py @@ -34,12 +34,14 @@ class FunnyOrDieIE(InfoExtractor): if mobj.group('type') == 'embed': post_json = self._search_regex( r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details') - post = json.loads(post_json)['attachment'] + post = json.loads(post_json) title = post['name'] description = post.get('description') + thumbnail = post.get('picture') else: title = self._og_search_title(webpage) description = self._og_search_description(webpage) + thumbnail = None return { 'id': video_id, @@ -47,4 +49,5 @@ class FunnyOrDieIE(InfoExtractor): 'ext': 'mp4', 'title': title, 'description': description, + 'thumbnail': thumbnail, }