From: Sergey M․ Date: Fri, 25 Dec 2015 15:14:00 +0000 (+0600) Subject: [rutv] Fix extraction (Closes #8004) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=6418b2439b81ceec77b50879b4d9d395893d8eba;p=youtube-dl [rutv] Fix extraction (Closes #8004) --- diff --git a/youtube_dl/extractor/rutv.py b/youtube_dl/extractor/rutv.py index d9df06861..f7fe1fece 100644 --- a/youtube_dl/extractor/rutv.py +++ b/youtube_dl/extractor/rutv.py @@ -131,7 +131,7 @@ class RUTVIE(InfoExtractor): is_live = video_type == 'live' json_data = self._download_json( - 'http://player.rutv.ru/iframe/%splay/id/%s' % ('live-' if is_live else '', video_id), + 'http://player.rutv.ru/iframe/data%s/id/%s' % ('live' if is_live else 'video', video_id), video_id, 'Downloading JSON') if json_data['errors']: