diff options
author | pukkandan <pukkandan@gmail.com> | 2021-02-18 23:42:56 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-02-19 00:12:21 +0530 |
commit | dca3ff4a5e9628a13881eb556fa675e23671834c (patch) | |
tree | 06eeb1dba67d3809937468b4a24876a8e5c77d86 /youtube_dlc/extractor/common.py | |
parent | da9be05edfae2dae0c8019504a557568794a2aad (diff) | |
download | hypervideo-pre-dca3ff4a5e9628a13881eb556fa675e23671834c.tar.lz hypervideo-pre-dca3ff4a5e9628a13881eb556fa675e23671834c.tar.xz hypervideo-pre-dca3ff4a5e9628a13881eb556fa675e23671834c.zip |
[formatsort] Remove forced priority of `quality`
When making `FormatSort`, I misinterpreted the purpose `quality`
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 49df880d0..b8e84089b 100644 --- a/youtube_dlc/extractor/common.py +++ b/youtube_dlc/extractor/common.py @@ -1388,7 +1388,7 @@ class InfoExtractor(object): 'hasvid': {'priority': True, 'field': 'vcodec', 'type': 'boolean', 'not_in_list': ('none',)}, 'hasaud': {'field': 'acodec', 'type': 'boolean', 'not_in_list': ('none',)}, 'lang': {'priority': True, 'convert': 'ignore', 'field': 'language_preference'}, - 'quality': {'priority': True, 'convert': 'float_none'}, + 'quality': {'convert': 'float_none'}, 'filesize': {'convert': 'bytes'}, 'fs_approx': {'convert': 'bytes', 'field': 'filesize_approx'}, 'id': {'convert': 'string', 'field': 'format_id'}, |