1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 08:35:32 +00:00

[extractor] Deprecate _sort_formats

This commit is contained in:
pukkandan
2022-11-17 10:40:03 +05:30
parent 784320c98c
commit 9f14daf22b
579 changed files with 69 additions and 918 deletions

View File

@ -109,7 +109,6 @@ class SteamIE(InfoExtractor):
'format_id': ext + quality,
'url': video_url,
})
self._sort_formats(formats)
entry['formats'] = formats
entries.append(entry)
embedded_videos = re.findall(r'(<iframe[^>]+>)', webpage)
@ -163,7 +162,6 @@ class SteamCommunityBroadcastIE(InfoExtractor):
'https://steamcommunity.com/actions/ajaxresolveusers',
video_id, query={'steamids': video_id})[0]
self._sort_formats(formats)
return {
'id': video_id,
'title': self._generic_title('', webpage),