[YoutubeDL] Improve _format_note
This commit is contained in:
parent
1e501364d5
commit
5d583bdf6c
2 changed files with 7 additions and 1 deletions
|
@ -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 += ', '
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue