summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-10-23 23:07:58 +0700
committerSergey M․ <dstftw@gmail.com>2014-10-23 23:07:58 +0700
commit75da98e9e1f55f8fc27200f2b3d56386ead3b56d (patch)
tree99cd5e690c11dca616b7fb281ff6bd9502d482e4
parent281d3f1d6877a022d51d8d654595c4958dd83d7c (diff)
downloadyoutube-dl-75da98e9e1f55f8fc27200f2b3d56386ead3b56d.tar.gz
youtube-dl-75da98e9e1f55f8fc27200f2b3d56386ead3b56d.tar.xz
youtube-dl-75da98e9e1f55f8fc27200f2b3d56386ead3b56d.zip
[funnyordie] Fix extraction (Closes #4011)
-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 d966e8403..ec6d96ada 100644
--- a/youtube_dl/extractor/funnyordie.py
+++ b/youtube_dl/extractor/funnyordie.py
@@ -37,7 +37,7 @@ class FunnyOrDieIE(InfoExtractor):
         video_id = mobj.group('id')
         webpage = self._download_webpage(url, video_id)
 
-        links = re.findall(r'<source src="([^"]+/v)\d+\.([^"]+)" type=\'video', webpage)
+        links = re.findall(r'<source src="([^"]+/v)[^"]+\.([^"]+)" type=\'video', webpage)
         if not links:
             raise ExtractorError('No media links available for %s' % video_id)