[extractor/common] Correct sort order.
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 6 Feb 2015 14:16:43 +0000 (15:16 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 6 Feb 2015 14:16:45 +0000 (15:16 +0100)
We should look at height and width before ext_preference.

youtube_dl/extractor/common.py

index df1a4417bb99fe6cf415b293ce068787d1568dc8..980b63680255793291b9857d1e1dfb657a9836d8 100644 (file)
@@ -707,9 +707,9 @@ class InfoExtractor(object):
                 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,