diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-09-10 02:37:22 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-09-10 02:37:22 +0700 |
commit | 25d110be30b92f785617140b0617a73d8eec5f7b (patch) | |
tree | 218a2887b49e5c7670d764652953d004707b1a60 /youtube_dl/utils.py | |
parent | a2637a2dda5e90b83bd2f403d06ad1ce21fc8c5f (diff) |
[utils] Properly recognize AV1 codec (closes #17506)
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index bcfb72d43..e84d35d4d 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -2477,7 +2477,7 @@ def parse_codecs(codecs_str): vcodec, acodec = None, None for full_codec in splited_codecs: codec = full_codec.split('.')[0] - if codec in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v', 'hvc1'): + if codec in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v', 'hvc1', 'av01'): if not vcodec: vcodec = full_codec elif codec in ('mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'): |