mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-09-03 00:25:08 +00:00
[extractor] Deprecate _sort_formats
This commit is contained in:
@ -148,7 +148,6 @@ class IPrimaIE(InfoExtractor):
|
||||
elif manifest_type == 'DASH' or ext == 'mpd':
|
||||
formats += self._extract_mpd_formats(
|
||||
manifest_url, video_id, mpd_id='dash', fatal=False)
|
||||
self._sort_formats(formats)
|
||||
|
||||
final_result = self._search_json_ld(webpage, video_id, default={})
|
||||
final_result.update({
|
||||
@ -248,8 +247,6 @@ class IPrimaCNNIE(InfoExtractor):
|
||||
if not formats and '>GEO_IP_NOT_ALLOWED<' in playerpage:
|
||||
self.raise_geo_restricted(countries=['CZ'], metadata_available=True)
|
||||
|
||||
self._sort_formats(formats)
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': title,
|
||||
|
Reference in New Issue
Block a user