aboutsummaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-12-26 12:42:43 -0500
committerJesús <heckyel@hyperbola.info>2021-12-26 12:42:43 -0500
commit5006149b5922a0254bccc678a27f833d6b12b672 (patch)
treec3d84d22f0708c94c8209592f6e380928536639e /settings.py
parentbcbd83fa309ec0a6743f32ce7578cc66b53c6f0c (diff)
downloadyt-local-5006149b5922a0254bccc678a27f833d6b12b672.tar.lz
yt-local-5006149b5922a0254bccc678a27f833d6b12b672.tar.xz
yt-local-5006149b5922a0254bccc678a27f833d6b12b672.zip
change by default format, priority FLOSS formats
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py16
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', {