commit: 4f514c7e88d2ce8ebe9c2478183e8797cfb2a4c4
parent 5bdc520cf19f404247ec2be1ffc1e83449fa2375
Author: Sergey M․ <dstftw@gmail.com>
Date: Mon, 18 May 2015 21:29:41 +0600
[wimp] Fix youtube extraction (Closes #5690)
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/wimp.py b/youtube_dl/extractor/wimp.py
@@ -37,7 +37,8 @@ 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*[\"'](.+?)[\"']", r"videoId\s*:\s*[\"']([^\"']+)[\"']"],
+ webpage, 'video URL')
if YoutubeIE.suitable(video_url):
self.to_screen('Found YouTube video')
return {