[tf1] Fix extraction (Closes #7873)
This commit is contained in:
parent
0cb58b0259
commit
d7ffcfcf97
|
@ -43,11 +43,9 @@ class TF1IE(InfoExtractor):
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
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)
|
||||||
embed_url = self._html_search_regex(
|
wat_id = self._html_search_regex(
|
||||||
r'["\'](https?://www.wat.tv/embedframe/.*?)["\']', webpage, 'embed url')
|
r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d+)\1',
|
||||||
embed_page = self._download_webpage(embed_url, video_id,
|
webpage, 'wat id', group='id')
|
||||||
'Downloading embed player page')
|
|
||||||
wat_id = self._search_regex(r'UVID=(.*?)&', embed_page, 'wat 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)
|
||||||
return self.url_result(wat_info['media']['url'], 'Wat')
|
return self.url_result(wat_info['media']['url'], 'Wat')
|
||||||
|
|
Loading…
Reference in New Issue