about summary refs log tree commit diff
path: root/youtube_dl/extractor/tf1.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-15 21:11:52 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-15 21:11:52 +0600
commitae5e94808e70e608e6bbdf71c0fb8436bcaa76e2 (patch)
tree1587654771efbb08a30f21ba1f9ec7cba06f1ad7 /youtube_dl/extractor/tf1.py
parentd7ffcfcf9703f1f02e642d0855c0977056e2d0fc (diff)
downloadyoutube-dl-ae5e94808e70e608e6bbdf71c0fb8436bcaa76e2.tar.gz
youtube-dl-ae5e94808e70e608e6bbdf71c0fb8436bcaa76e2.tar.xz
youtube-dl-ae5e94808e70e608e6bbdf71c0fb8436bcaa76e2.zip
[tf1] Fix extraction (2)
Diffstat (limited to 'youtube_dl/extractor/tf1.py')
-rw-r--r--youtube_dl/extractor/tf1.py2
1 files changed, 1 insertions, 1 deletions
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<id>\d+)\1',
+            r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d{8})\1',
             webpage, 'wat id', group='id')
         wat_info = self._download_json(
             'http://www.wat.tv/interface/contentv3/%s' % wat_id, video_id)