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:09:14 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-15 21:09:14 +0600
commitd7ffcfcf9703f1f02e642d0855c0977056e2d0fc (patch)
tree00ba114a12aa6b9e52861c7f8c167d2b4417ea48 /youtube_dl/extractor/tf1.py
parent0cb58b0259de0b0f44b0326d492b98a8eeb6316e (diff)
downloadyoutube-dl-d7ffcfcf9703f1f02e642d0855c0977056e2d0fc.tar.gz
youtube-dl-d7ffcfcf9703f1f02e642d0855c0977056e2d0fc.tar.xz
youtube-dl-d7ffcfcf9703f1f02e642d0855c0977056e2d0fc.zip
[tf1] Fix extraction (Closes #7873)
Diffstat (limited to 'youtube_dl/extractor/tf1.py')
-rw-r--r--youtube_dl/extractor/tf1.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/youtube_dl/extractor/tf1.py b/youtube_dl/extractor/tf1.py
index 3a68eaa80..32f5f78bf 100644
--- a/youtube_dl/extractor/tf1.py
+++ b/youtube_dl/extractor/tf1.py
@@ -43,11 +43,9 @@ class TF1IE(InfoExtractor):
     def _real_extract(self, url):
         video_id = self._match_id(url)
         webpage = self._download_webpage(url, video_id)
-        embed_url = self._html_search_regex(
-            r'["\'](https?://www.wat.tv/embedframe/.*?)["\']', webpage, 'embed url')
-        embed_page = self._download_webpage(embed_url, video_id,
-                                            'Downloading embed player page')
-        wat_id = self._search_regex(r'UVID=(.*?)&', embed_page, 'wat id')
+        wat_id = self._html_search_regex(
+            r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d+)\1',
+            webpage, 'wat id', group='id')
         wat_info = self._download_json(
             'http://www.wat.tv/interface/contentv3/%s' % wat_id, video_id)
         return self.url_result(wat_info['media']['url'], 'Wat')