youtube-dl

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

commit 1a6373ef3960add0117f797e0afe3322352c1c52
parent f6c24009bea95104e186afd77a867abbc61b7f81
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue,  3 Feb 2015 10:53:05 +0100

[sort_formats] Prefer bitrate over video size

720p @ 1000KB/s looks way better than 1080p @ 500KB/s

Diffstat:
Myoutube_dl/extractor/common.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -704,11 +704,11 @@ class InfoExtractor(object): preference, f.get('language_preference') if f.get('language_preference') is not None else -1, f.get('quality') if f.get('quality') is not None else -1, - 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('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, 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,