aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/funnyordie.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-12 11:31:27 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-12 11:31:27 +0200
commitc247d87ef3a7f03dfcc28e3fc23dee9ec34835d7 (patch)
tree7ad904f9cb860047d400dbfe9e281e45af02d461 /youtube_dl/extractor/funnyordie.py
parent07ac9e2cc2c269d7eb015d6de5bc6e66981d4e31 (diff)
downloadyoutube-dl-c247d87ef3a7f03dfcc28e3fc23dee9ec34835d7.zip
youtube-dl-c247d87ef3a7f03dfcc28e3fc23dee9ec34835d7.tar.gz
youtube-dl-c247d87ef3a7f03dfcc28e3fc23dee9ec34835d7.tar.bz2
[funnyordie] fix video url extraction
Diffstat (limited to 'youtube_dl/extractor/funnyordie.py')
-rw-r--r--youtube_dl/extractor/funnyordie.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py
index 4508f0d..f3d86a7 100644
--- a/youtube_dl/extractor/funnyordie.py
+++ b/youtube_dl/extractor/funnyordie.py
@@ -21,7 +21,7 @@ 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="(.*?)"',
webpage, u'video URL', flags=re.DOTALL)
info = {