diff options
author | remitamine <remitamine@gmail.com> | 2016-02-22 09:57:12 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-02-22 09:57:40 +0100 |
commit | 6212bcb19140da77d25fe17830930ebbd8a22c1d (patch) | |
tree | 882b4e2214cc1cd7716e36431ec01497149e2863 /youtube_dl/extractor/tf1.py | |
parent | d69abbd3f04b5f3fced2c6a53b4fce788e31906d (diff) |
[tf1] fix info extraction(fixes #8599)
Diffstat (limited to 'youtube_dl/extractor/tf1.py')
-rw-r--r-- | youtube_dl/extractor/tf1.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/tf1.py b/youtube_dl/extractor/tf1.py index 6890021cf..e1a64e284 100644 --- a/youtube_dl/extractor/tf1.py +++ b/youtube_dl/extractor/tf1.py @@ -50,6 +50,4 @@ class TF1IE(InfoExtractor): wat_id = self._html_search_regex( 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) - return self.url_result(wat_info['media']['url'], 'Wat') + return self.url_result('wat:%s' % wat_id, 'Wat') |