aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/rutv.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-25 21:14:00 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-25 21:14:00 +0600
commit6418b2439b81ceec77b50879b4d9d395893d8eba (patch)
tree88888e6858713f3e3a528425502f87cb57623dae /youtube_dl/extractor/rutv.py
parent06d5556dface3901a86419b6b125ef377116448f (diff)
downloadyoutube-dl-6418b2439b81ceec77b50879b4d9d395893d8eba.tar.xz
[rutv] Fix extraction (Closes #8004)
Diffstat (limited to 'youtube_dl/extractor/rutv.py')
-rw-r--r--youtube_dl/extractor/rutv.py2
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']: