diff options
author | Jesús <heckyel@hyperbola.info> | 2021-12-26 12:42:43 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-12-26 12:42:43 -0500 |
commit | 5006149b5922a0254bccc678a27f833d6b12b672 (patch) | |
tree | c3d84d22f0708c94c8209592f6e380928536639e | |
parent | bcbd83fa309ec0a6743f32ce7578cc66b53c6f0c (diff) | |
download | yt-local-5006149b5922a0254bccc678a27f833d6b12b672.tar.lz yt-local-5006149b5922a0254bccc678a27f833d6b12b672.tar.xz yt-local-5006149b5922a0254bccc678a27f833d6b12b672.zip |
change by default format, priority FLOSS formats
-rw-r--r-- | settings.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/settings.py b/settings.py index d7112b4..da42847 100644 --- a/settings.py +++ b/settings.py @@ -168,17 +168,13 @@ For security reasons, enabling this is not recommended.''', 'category': 'playback', }), - ('codec_rank_h264', { + ('codec_rank_av1', { 'type': int, 'default': 1, - 'label': 'H.264 Codec Ranking', + 'label': 'AV1 Codec Ranking', 'comment': '', 'options': [(1, '#1'), (2, '#2'), (3, '#3')], 'category': 'playback', - 'description': ( - 'Which video codecs to prefer. Codecs given the same ' - 'ranking will use smaller file size as a tiebreaker.' - ) }), ('codec_rank_vp', { @@ -190,13 +186,17 @@ For security reasons, enabling this is not recommended.''', 'category': 'playback', }), - ('codec_rank_av1', { + ('codec_rank_h264', { 'type': int, 'default': 3, - 'label': 'AV1 Codec Ranking', + 'label': 'H.264 Codec Ranking', 'comment': '', 'options': [(1, '#1'), (2, '#2'), (3, '#3')], 'category': 'playback', + 'description': ( + 'Which video codecs to prefer. Codecs given the same ' + 'ranking will use smaller file size as a tiebreaker.' + ) }), ('prefer_uni_sources', { |