Sort formats by fps as well
authorPhilipp Hagemeister <phihag@phihag.de>
Thu, 30 Oct 2014 08:40:52 +0000 (09:40 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Thu, 30 Oct 2014 08:40:52 +0000 (09:40 +0100)
youtube_dl/extractor/common.py

index 3300734bc14838ded747c1a093293a0419d3d71a..7e4113213c8a850f42b58e187e69870d81102d43 100644 (file)
@@ -619,6 +619,7 @@ class InfoExtractor(object):
                 f.get('vbr') if f.get('vbr') is not None else -1,
                 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,
                 f.get('filesize') if f.get('filesize') is not None else -1,
                 f.get('filesize_approx') if f.get('filesize_approx') is not None else -1,
                 f.get('source_preference') if f.get('source_preference') is not None else -1,