youtube-dl

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

commit 282962bd369ae5b6a9fcca97c0caa8fa3dfe6ded
parent c93c2ab1c3bc84f5525e2771c48bcd6d384d9dae
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue,  7 Jan 2014 08:08:48 +0100

--list-formats: Only add "@" if vbr is given

Diffstat:
Myoutube_dl/YoutubeDL.py | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py @@ -1062,7 +1062,9 @@ class YoutubeDL(object): res += '%4dk ' % fdict['tbr'] if (fdict.get('vcodec') is not None and fdict.get('vcodec') != 'none'): - res += '%-5s@' % fdict['vcodec'] + res += '%-5s' % fdict['vcodec'] + if fdict.get('vbr') is not None: + res += '@' elif fdict.get('vbr') is not None and fdict.get('abr') is not None: res += 'video@' if fdict.get('vbr') is not None: