Browse Source

[wimp] Fix youtube extraction (Closes #5690)

totalwebcasting
Sergey M․ 9 years ago
parent
commit
4f514c7e88
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/wimp.py

+ 2
- 1
youtube_dl/extractor/wimp.py View File

@ -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 {


Loading…
Cancel
Save