youtube-dl

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

commit e7642ab572c1a541e7352b7407dd1c66f93ba379
parent bdf970172905e90be7886fd5f78532bbdc924eba
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue,  4 Nov 2014 17:13:17 +0700

[wimp] Fix video URL regex

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

diff --git a/youtube_dl/extractor/wimp.py b/youtube_dl/extractor/wimp.py @@ -37,7 +37,7 @@ class WimpIE(InfoExtractor): video_id = mobj.group(1) webpage = self._download_webpage(url, video_id) video_url = self._search_regex( - r"'file'\s*:\s*'([^']+)'", webpage, 'video URL') + r"[\"']file[\"']\s*[:,]\s*[\"'](.+?)[\"']", webpage, 'video URL') if YoutubeIE.suitable(video_url): self.to_screen('Found YouTube video') return {