youtube-dl

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

commit cddcfd90b474df2a67be55874083159fa957768a
parent f36aacba0ff035b661bfe97bb72aff890b95304d
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 13 Mar 2014 00:52:57 +0100

[funnyordie] Correct JSON interpretation

Diffstat:
Myoutube_dl/extractor/funnyordie.py | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 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, }