diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-05-18 21:29:41 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-05-18 21:29:41 +0600 |
commit | 4f514c7e88d2ce8ebe9c2478183e8797cfb2a4c4 (patch) | |
tree | aeb8dda2552d6962ae4201cd5697df2d4b4d81ed /youtube_dl | |
parent | 5bdc520cf19f404247ec2be1ffc1e83449fa2375 (diff) |
[wimp] Fix youtube extraction (Closes #5690)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/wimp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/wimp.py b/youtube_dl/extractor/wimp.py index d6dec25ca..f69d46a28 100644 --- 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 { |