From: Sergey M․ Date: Sun, 28 Feb 2016 21:28:21 +0000 (+0600) Subject: [tf1] Improve wat id regex (Closes #8691) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=4b3cd7316cbb95100f7fc4dd03d86e0fd7674996;p=youtube-dl [tf1] Improve wat id regex (Closes #8691) --- diff --git a/youtube_dl/extractor/tf1.py b/youtube_dl/extractor/tf1.py index e1a64e284..9ee844684 100644 --- a/youtube_dl/extractor/tf1.py +++ b/youtube_dl/extractor/tf1.py @@ -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\d{8})\1', + r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P\d{8})(?:#.*?)?\1', webpage, 'wat id', group='id') return self.url_result('wat:%s' % wat_id, 'Wat')