mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-21 20:46:36 -05:00
[extractor/FIFA] Change API endpoint (#4577)
Closes #4566 Authored by: yashkc2025, Bricio
This commit is contained in:
parent
d380fc1614
commit
061a17abd3
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ def _real_extract(self, url):
|
||||||
f'{preconnect_link}/sections/videoDetails/{video_id}', video_id, 'Downloading Video Details', fatal=False)
|
f'{preconnect_link}/sections/videoDetails/{video_id}', video_id, 'Downloading Video Details', fatal=False)
|
||||||
|
|
||||||
preplay_parameters = self._download_json(
|
preplay_parameters = self._download_json(
|
||||||
f'{preconnect_link}/video/GetVerizonPreplayParameters/{video_id}', video_id, 'Downloading Preplay Parameters')['preplayParameters']
|
f'{preconnect_link}/videoPlayerData/{video_id}', video_id, 'Downloading Preplay Parameters')['preplayParameters']
|
||||||
|
|
||||||
cid = preplay_parameters['contentId']
|
cid = preplay_parameters['contentId']
|
||||||
content_data = self._download_json(
|
content_data = self._download_json(
|
||||||
|
|
Loading…
Reference in a new issue