youtube-dl

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

commit 5d583bdf6cff8161e2df87ba1a0c97a943596eab
parent 1e501364d5a7f5c99037e6791616ee48989bbaea
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 10 Mar 2016 01:03:18 +0600

[YoutubeDL] Improve _format_note

Diffstat:
Mtest/test_YoutubeDL.py | 4++++
Myoutube_dl/YoutubeDL.py | 4+++-
2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py @@ -502,6 +502,10 @@ class TestYoutubeDL(unittest.TestCase): assertRegexpMatches(self, ydl._format_note({ 'vbr': 10, }), '^\s*10k$') + assertRegexpMatches(self, ydl._format_note({ + 'fps': 30, + }), '^30fps$') + def test_postprocessors(self): filename = 'post-processor-testfile.mp4' diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py @@ -1856,7 +1856,9 @@ class YoutubeDL(object): if fdict.get('vbr') is not None: res += '%4dk' % fdict['vbr'] if fdict.get('fps') is not None: - res += ', %sfps' % fdict['fps'] + if res: + res += ', ' + res += '%sfps' % fdict['fps'] if fdict.get('acodec') is not None: if res: res += ', '