projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbb21cf
)
Sort formats by fps as well
author
Philipp Hagemeister
<phihag@phihag.de>
Thu, 30 Oct 2014 08:40:52 +0000
(09:40 +0100)
committer
Philipp Hagemeister
<phihag@phihag.de>
Thu, 30 Oct 2014 08:40:52 +0000
(09:40 +0100)
youtube_dl/extractor/common.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/common.py
b/youtube_dl/extractor/common.py
index 3300734bc14838ded747c1a093293a0419d3d71a..7e4113213c8a850f42b58e187e69870d81102d43 100644
(file)
--- a/
youtube_dl/extractor/common.py
+++ b/
youtube_dl/extractor/common.py
@@
-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,