aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Heine <mail@adrianheine.de>2020-08-15 23:11:00 +0200
committerAdrian Heine <mail@adrianheine.de>2020-08-15 23:11:00 +0200
commit5c23e3af61972ddc1cc672c331780e319c27f794 (patch)
treea2101ee1873d86a7c4019d7c5a90a2b5f55ea952
parent10709fc7c640fcd2f4866090d68f130fc8d9ad0c (diff)
downloadhypervideo-pre-5c23e3af61972ddc1cc672c331780e319c27f794.tar.lz
hypervideo-pre-5c23e3af61972ddc1cc672c331780e319c27f794.tar.xz
hypervideo-pre-5c23e3af61972ddc1cc672c331780e319c27f794.zip
[rutv] Fix JSON URL (closes #26333)
-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 d2713c19a..aceb35994 100644
--- a/youtube_dl/extractor/rutv.py
+++ b/youtube_dl/extractor/rutv.py
@@ -139,7 +139,7 @@ class RUTVIE(InfoExtractor):
is_live = video_type == 'live'
json_data = self._download_json(
- 'http://player.rutv.ru/iframe/data%s/id/%s' % ('live' if is_live else 'video', video_id),
+ 'http://player.vgtrk.com/iframe/data%s/id/%s' % ('live' if is_live else 'video', video_id),
video_id, 'Downloading JSON')
if json_data['errors']: