]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/extractor/fifa.py
[extractor] Deprecate `_sort_formats`
[yt-dlp.git] / yt_dlp / extractor / fifa.py
index df9a2f8dac90e2c03fbc2a136fa3099b2b3851e0..dc00edcb31cd2858f0818f2b1ddf680af79e5a0f 100644 (file)
@@ -60,7 +60,7 @@ def _real_extract(self, url):
             f'{preconnect_link}/sections/videoDetails/{video_id}', video_id, 'Downloading Video Details', fatal=False)
 
         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']
         content_data = self._download_json(
@@ -80,7 +80,6 @@ def _real_extract(self, url):
             })
 
         formats, subtitles = self._extract_m3u8_formats_and_subtitles(content_data['playURL'], video_id)
-        self._sort_formats(formats)
 
         return {
             'id': video_id,