1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-20 14:36:52 +02:00

[extractor/common] Correct sort order.

We should look at height and width before ext_preference.
This commit is contained in:
Philipp Hagemeister 2015-02-06 15:16:43 +01:00
parent c831973366
commit 1e1896f2de

View File

@ -707,9 +707,9 @@ def _formats_key(f):
f.get('quality') if f.get('quality') is not None else -1,
f.get('tbr') if f.get('tbr') is not None else -1,
f.get('vbr') if f.get('vbr') is not None else -1,
ext_preference,
f.get('height') if f.get('height') is not None else -1,
f.get('width') if f.get('width') is not None else -1,
ext_preference,
f.get('abr') if f.get('abr') is not None else -1,
audio_ext_preference,
f.get('fps') if f.get('fps') is not None else -1,