[extractor,utils] Detect more codecs/mimetypes

Fixes: https://github.com/ytdl-org/youtube-dl/issues/29943
This commit is contained in:
pukkandan
2021-10-13 05:03:40 +05:30
parent 993191c0d5
commit 6993f78d1b
2 changed files with 3 additions and 1 deletions

View File

@@ -4621,7 +4621,7 @@ def parse_codecs(codecs_str):
vcodec, acodec = None, None
for full_codec in split_codecs:
codec = full_codec.split('.')[0]
if codec in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v', 'hvc1', 'av01', 'theora'):
if codec in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v', 'hvc1', 'av01', 'theora', 'dvh1', 'dvhe'):
if not vcodec:
vcodec = full_codec
elif codec in ('mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'):