about summary refs log tree commit diff
path: root/youtube_dl/extractor/funnyordie.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-03-13 00:52:57 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-03-13 00:53:19 +0100
commitcddcfd90b474df2a67be55874083159fa957768a (patch)
treefd1241acdc02d0b4413e8a32cacb4fa6e695dff0 /youtube_dl/extractor/funnyordie.py
parentf36aacba0ff035b661bfe97bb72aff890b95304d (diff)
downloadyoutube-dl-cddcfd90b474df2a67be55874083159fa957768a.tar.gz
youtube-dl-cddcfd90b474df2a67be55874083159fa957768a.tar.xz
youtube-dl-cddcfd90b474df2a67be55874083159fa957768a.zip
[funnyordie] Correct JSON interpretation
Diffstat (limited to 'youtube_dl/extractor/funnyordie.py')
-rw-r--r--youtube_dl/extractor/funnyordie.py5
1 files changed, 4 insertions, 1 deletions
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,
         }