1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 12:41:20 +02:00

[wimp] Fix video URL regex

This commit is contained in:
Sergey M․ 2014-11-04 17:13:17 +07:00
parent bdf9701729
commit e7642ab572

View File

@ -37,7 +37,7 @@ def _real_extract(self, url):
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 {