youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 2c8e03d937cc08d0d924b24a95fcc2eb3076e544
parent fbb21cf528fe5cc4ba72f97f691cdf7ec20ee0e6
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 30 Oct 2014 09:40:52 +0100

Sort formats by fps as well

Diffstat:
Myoutube_dl/extractor/common.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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,