X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Ffunnyordie.py;h=2ccdb70733e9b07cc2fc925630cde0a48a739b4b;hb=355e4fd07e7f9c0632d9d78415675f8b5cc3c2ce;hp=64363dcd51d687fe749ead55f5fc0efc4c04d31c;hpb=46720279c28afb646b6ac19bcb11e85bb4bea726;p=youtube-dl diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py index 64363dcd5..2ccdb7073 100644 --- a/youtube_dl/extractor/funnyordie.py +++ b/youtube_dl/extractor/funnyordie.py @@ -21,17 +21,15 @@ 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, - 'description': self._og_search_description(webpage, flags=re.DOTALL), + 'title': self._og_search_title(webpage), + 'description': self._og_search_description(webpage), } return [info]