mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-26 12:11:52 +00:00
[tf1] Fix extraction (2)
This commit is contained in:
parent
d7ffcfcf97
commit
ae5e94808e
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class TF1IE(InfoExtractor):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
wat_id = self._html_search_regex(
|
wat_id = self._html_search_regex(
|
||||||
r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d+)\1',
|
r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d{8})\1',
|
||||||
webpage, 'wat id', group='id')
|
webpage, 'wat id', group='id')
|
||||||
wat_info = self._download_json(
|
wat_info = self._download_json(
|
||||||
'http://www.wat.tv/interface/contentv3/%s' % wat_id, video_id)
|
'http://www.wat.tv/interface/contentv3/%s' % wat_id, video_id)
|
||||||
|
|
Loading…
Reference in a new issue