1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-11 06:19:37 +00:00

[tf1] fix wat id extraction(closes #9862)

This commit is contained in:
Remita Amine 2016-06-23 00:13:52 +01:00
parent 96f88e91b7
commit 22b7ac13ef

View file

@ -48,6 +48,6 @@ class TF1IE(InfoExtractor):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
wat_id = self._html_search_regex(
r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d{8}).*?\1',
r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d{8})\1',
webpage, 'wat id', group='id')
return self.url_result('wat:%s' % wat_id, 'Wat')