1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-15 23:32:25 +02:00

[ok] Sort formats

This commit is contained in:
Sergey M․ 2015-09-02 22:09:33 +06:00
parent 88720ed09b
commit e8dcfa3d69

View File

@ -135,6 +135,7 @@ def _real_extract(self, url):
'format_id': f['name'],
'quality': quality(f['name']),
} for f in metadata['videos']]
self._sort_formats(formats)
info['formats'] = formats
return info