From: Jaime Marquínez Ferrándiz Date: Wed, 21 Aug 2013 16:58:25 +0000 (+0200) Subject: [funnyordie] fix extraction of video url and title X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=e0cfeb2ea7c2c9c597e974d13716425b0d4565c0;p=youtube-dl [funnyordie] fix extraction of video url and title --- diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py index 67a7e5f76..4508f0dfa 100644 --- a/youtube_dl/extractor/funnyordie.py +++ b/youtube_dl/extractor/funnyordie.py @@ -21,17 +21,14 @@ class FunnyOrDieIE(InfoExtractor): video_id = mobj.group('id') webpage = self._download_webpage(url, video_id) - video_url = self._html_search_regex(r']*>\s*]*>\s*(?P.*?)</h1>", - r'<title>(?P<title>[^<]+?)'), webpage, 'title', flags=re.DOTALL) - info = { 'id': video_id, 'url': video_url, 'ext': 'mp4', - 'title': title, + 'title': self._og_search_title(webpage), 'description': self._og_search_description(webpage), } return [info]