diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-09-20 13:05:34 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-09-20 13:05:34 +0200 |
commit | 1a810f0d4e63ba702e49b7404c3f5f74ef716759 (patch) | |
tree | c1b7ff033feaeea16bf2004f230c5a749bcf1db2 /youtube_dl | |
parent | 63037593c0cc3d5da4065368736d74fd594cb1fc (diff) |
[funnyordie] Fix video url extraction
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/funnyordie.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py index f3d86a711..2ccdb7073 100644 --- a/youtube_dl/extractor/funnyordie.py +++ b/youtube_dl/extractor/funnyordie.py @@ -21,7 +21,8 @@ class FunnyOrDieIE(InfoExtractor): video_id = mobj.group('id') webpage = self._download_webpage(url, video_id) - video_url = self._search_regex(r'type="video/mp4" src="(.*?)"', + video_url = self._search_regex( + [r'type="video/mp4" src="(.*?)"', r'src="([^>]*?)" type=\'video/mp4\''], webpage, u'video URL', flags=re.DOTALL) info = { |