mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 02:32:44 +01:00
[youtube] Pick up codecs info from DASH manifest when not set explicitly
This commit is contained in:
parent
2988835af5
commit
1b5a1ae257
@ -824,6 +824,12 @@ def decrypt_sig(mobj):
|
|||||||
except StopIteration:
|
except StopIteration:
|
||||||
full_info = self._formats.get(format_id, {}).copy()
|
full_info = self._formats.get(format_id, {}).copy()
|
||||||
full_info.update(f)
|
full_info.update(f)
|
||||||
|
codecs = r.attrib.get('codecs')
|
||||||
|
if codecs:
|
||||||
|
if full_info.get('acodec') == 'none' and 'vcodec' not in full_info:
|
||||||
|
full_info['vcodec'] = codecs
|
||||||
|
elif full_info.get('vcodec') == 'none' and 'acodec' not in full_info:
|
||||||
|
full_info['acodec'] = codecs
|
||||||
formats.append(full_info)
|
formats.append(full_info)
|
||||||
else:
|
else:
|
||||||
existing_format.update(f)
|
existing_format.update(f)
|
||||||
|
Loading…
Reference in New Issue
Block a user