1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-12-22 16:57:40 +00:00

[wimp] Improve video URL regex

This commit is contained in:
Sergey M․ 2015-12-07 22:18:00 +06:00
parent 0d2d967cc7
commit 1775612512

View file

@ -42,7 +42,7 @@ class WimpIE(InfoExtractor):
} }
video_url = self._search_regex( video_url = self._search_regex(
r'<video[^>]+>\s*<source src=(["\'])(?P<url>.+?)\1', r'<video[^>]+>\s*<source[^>]+src=(["\'])(?P<url>.+?)\1',
webpage, 'video URL', group='url') webpage, 'video URL', group='url')
return { return {