aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-11-04 17:13:17 +0700
committerSergey M․ <dstftw@gmail.com>2014-11-04 17:13:17 +0700
commite7642ab572c1a541e7352b7407dd1c66f93ba379 (patch)
tree3a2b084e6b5a404d99ab9c0b3f250b8a05a6b0e0
parentbdf970172905e90be7886fd5f78532bbdc924eba (diff)
downloadyoutube-dl-e7642ab572c1a541e7352b7407dd1c66f93ba379.tar.xz
[wimp] Fix video URL regex
-rw-r--r--youtube_dl/extractor/wimp.py2
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 {