youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 75da98e9e1f55f8fc27200f2b3d56386ead3b56d
parent 281d3f1d6877a022d51d8d654595c4958dd83d7c
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 23 Oct 2014 23:07:58 +0700

[funnyordie] Fix extraction (Closes #4011)

Diffstat:
Myoutube_dl/extractor/funnyordie.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)