commit: 4b3cd7316cbb95100f7fc4dd03d86e0fd7674996
parent 6dae56384a3a50f832b647f798a4b4bbd770448f
Author: Sergey M․ <dstftw@gmail.com>
Date: Mon, 29 Feb 2016 03:28:21 +0600
[tf1] Improve wat id regex (Closes #8691)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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<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')