diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-06 21:27:34 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-06 21:28:07 +0530 |
commit | 7fd86ce1a9e4e9a1eedc715df66346ec810ca7d5 (patch) | |
tree | a7a0e0a3a3c17a7a2f3ace80bf55c9fb9e4ec064 /youtube_dlc/extractor/common.py | |
parent | 735d865ece8801c146e368eef3723b5a3f14e490 (diff) | |
download | hypervideo-pre-7fd86ce1a9e4e9a1eedc715df66346ec810ca7d5.tar.lz hypervideo-pre-7fd86ce1a9e4e9a1eedc715df66346ec810ca7d5.tar.xz hypervideo-pre-7fd86ce1a9e4e9a1eedc715df66346ec810ca7d5.zip |
Remove av01 priority
Diffstat (limited to 'youtube_dlc/extractor/common.py')
-rw-r--r-- | youtube_dlc/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/common.py b/youtube_dlc/extractor/common.py index 3b6e1c8e5..d06043f5e 100644 --- a/youtube_dlc/extractor/common.py +++ b/youtube_dlc/extractor/common.py @@ -1372,7 +1372,7 @@ class InfoExtractor(object): settings = { 'vcodec': {'type': 'ordered', 'regex': True, - 'order': ['av01', 'vp9', '(h265|he?vc?)', '(h264|avc)', 'vp8', '(mp4v|h263)', 'theora', '', None, 'none']}, + 'order': ['vp9', '(h265|he?vc?)', '(h264|avc)', 'vp8', '(mp4v|h263)', 'theora', '', None, 'none']}, 'acodec': {'type': 'ordered', 'regex': True, 'order': ['opus', 'vorbis', 'aac', 'mp?4a?', 'mp3', 'e?a?c-?3', 'dts', '', None, 'none']}, 'protocol': {'type': 'ordered', 'regex': True, |