1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-05 03:19:38 +00:00

[wimp] Fix youtube extraction (Closes #5690)

This commit is contained in:
Sergey M․ 2015-05-18 21:29:41 +06:00
parent 5bdc520cf1
commit 4f514c7e88

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 {