1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-14 01:02:55 +08:00

[playtvak] Fix video regex

This commit is contained in:
Ondřej Caletka 2017-12-19 23:52:04 +01:00
parent 17c3aced5d
commit d2321c0f4f

View File

@ -95,7 +95,7 @@ class PlaytvakIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
info_url = self._html_search_regex(
r'Misc\.videoFLV\(\s*{\s*data\s*:\s*"([^"]+)"', webpage, 'info url')
r'Misc\.video(?:FLV)?\(\s*{\s*data\s*:\s*"([^"]+)"', webpage, 'info url')
parsed_url = compat_urlparse.urlparse(info_url)