diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-25 21:14:00 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-25 21:14:00 +0600 |
commit | 6418b2439b81ceec77b50879b4d9d395893d8eba (patch) | |
tree | 88888e6858713f3e3a528425502f87cb57623dae /youtube_dl | |
parent | 06d5556dface3901a86419b6b125ef377116448f (diff) |
[rutv] Fix extraction (Closes #8004)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/rutv.py | 2 |
1 files changed, 1 insertions, 1 deletions
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']: |