aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/extractor/iprima.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-11-17 10:40:03 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-11-17 11:40:17 +0530
commit9f14daf22b4080ae1531a772ee7574959af4e2fa (patch)
tree44e9d252cc11a8819f9092d31def30c1f9ed3137 /yt_dlp/extractor/iprima.py
parent784320c98c2a7e84d72636bc25f6f54c86f5e481 (diff)
[extractor] Deprecate `_sort_formats`
Diffstat (limited to 'yt_dlp/extractor/iprima.py')
-rw-r--r--yt_dlp/extractor/iprima.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/yt_dlp/extractor/iprima.py b/yt_dlp/extractor/iprima.py
index c98fe5b42..181820542 100644
--- a/yt_dlp/extractor/iprima.py
+++ b/yt_dlp/extractor/iprima.py
@@ -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,