summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-20 13:05:34 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-20 13:05:34 +0200
commit1a810f0d4e63ba702e49b7404c3f5f74ef716759 (patch)
treec1b7ff033feaeea16bf2004f230c5a749bcf1db2
parent63037593c0cc3d5da4065368736d74fd594cb1fc (diff)
downloadyoutube-dl-1a810f0d4e63ba702e49b7404c3f5f74ef716759.tar.gz
youtube-dl-1a810f0d4e63ba702e49b7404c3f5f74ef716759.tar.xz
youtube-dl-1a810f0d4e63ba702e49b7404c3f5f74ef716759.zip
[funnyordie] Fix video url extraction
-rw-r--r--youtube_dl/extractor/funnyordie.py3
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 = {