[wimp] Fix video URL regex
authorSergey M․ <dstftw@gmail.com>
Tue, 4 Nov 2014 10:13:17 +0000 (17:13 +0700)
committerSergey M․ <dstftw@gmail.com>
Tue, 4 Nov 2014 10:13:17 +0000 (17:13 +0700)
youtube_dl/extractor/wimp.py

index 3377a543ee7a93d59cd139389bb1c4c35b687277..d6dec25ca9e7bb9de539e89c147e22b7381e3719 100644 (file)
@@ -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 {