From: Sergey M․ Date: Tue, 15 Dec 2015 15:11:52 +0000 (+0600) Subject: [tf1] Fix extraction (2) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=ae5e94808e70e608e6bbdf71c0fb8436bcaa76e2;p=youtube-dl [tf1] Fix extraction (2) --- diff --git a/youtube_dl/extractor/tf1.py b/youtube_dl/extractor/tf1.py index 32f5f78bf..2d84c9bf8 100644 --- a/youtube_dl/extractor/tf1.py +++ b/youtube_dl/extractor/tf1.py @@ -44,7 +44,7 @@ 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\d+)\1', + r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P\d{8})\1', webpage, 'wat id', group='id') wat_info = self._download_json( 'http://www.wat.tv/interface/contentv3/%s' % wat_id, video_id)