[ccc] Add language information to formats
This commit is contained in:
parent
190ef07981
commit
32f9036447
3 changed files with 13 additions and 4 deletions
|
@ -1791,6 +1791,10 @@ class YoutubeDL(object):
|
|||
res = ''
|
||||
if fdict.get('ext') in ['f4f', 'f4m']:
|
||||
res += '(unsupported) '
|
||||
if fdict.get('language'):
|
||||
if res:
|
||||
res += ' '
|
||||
res += '[%s]' % fdict['language']
|
||||
if fdict.get('format_note') is not None:
|
||||
res += fdict['format_note'] + ' '
|
||||
if fdict.get('tbr') is not None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue