mirror of https://github.com/yt-dlp/yt-dlp.git
[rutv] Fix JSON URL (closes #26333)
This commit is contained in:
parent
10709fc7c6
commit
5c23e3af61
|
@ -139,7 +139,7 @@ class RUTVIE(InfoExtractor):
|
||||||
is_live = video_type == 'live'
|
is_live = video_type == 'live'
|
||||||
|
|
||||||
json_data = self._download_json(
|
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')
|
video_id, 'Downloading JSON')
|
||||||
|
|
||||||
if json_data['errors']:
|
if json_data['errors']:
|
||||||
|
|
Loading…
Reference in New Issue