diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-11-04 17:13:17 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-11-04 17:13:17 +0700 |
commit | e7642ab572c1a541e7352b7407dd1c66f93ba379 (patch) | |
tree | 3a2b084e6b5a404d99ab9c0b3f250b8a05a6b0e0 | |
parent | bdf970172905e90be7886fd5f78532bbdc924eba (diff) |
[wimp] Fix video URL regex
-rw-r--r-- | youtube_dl/extractor/wimp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/wimp.py b/youtube_dl/extractor/wimp.py index 3377a543e..d6dec25ca 100644 --- 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 { |