From 6212bcb19140da77d25fe17830930ebbd8a22c1d Mon Sep 17 00:00:00 2001 From: remitamine Date: Mon, 22 Feb 2016 09:57:12 +0100 Subject: [tf1] fix info extraction(fixes #8599) --- youtube_dl/extractor/tf1.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'youtube_dl/extractor/tf1.py') 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\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') -- cgit v1.2.3