diff --git a/youtube_dl/extractor/tf1.py b/youtube_dl/extractor/tf1.py index f54bd28ec..638e18235 100644 --- a/youtube_dl/extractor/tf1.py +++ b/youtube_dl/extractor/tf1.py @@ -62,6 +62,6 @@ class TF1IE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) wat_id = self._html_search_regex( - r'"streamId":"(?P\d{8})"', + r'\bstreamId\W+(?P\d+)', webpage, 'wat id', group='id') return self.url_result('wat:%s' % wat_id, 'Wat')