diff options
author | James Taylor <user234683@users.noreply.github.com> | 2021-08-17 17:58:17 -0700 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-08-29 18:48:56 -0500 |
commit | c9a75042d24ed969e0cf5ae0d7b76ccb3c41a93b (patch) | |
tree | 2083e8db6f479676a969fe13bda3a6c9cfcbc114 /settings.py | |
parent | e4af99fd178c39b584001fa1b7d6d62d88bc7a60 (diff) | |
download | yt-local-c9a75042d24ed969e0cf5ae0d7b76ccb3c41a93b.tar.lz yt-local-c9a75042d24ed969e0cf5ae0d7b76ccb3c41a93b.tar.xz yt-local-c9a75042d24ed969e0cf5ae0d7b76ccb3c41a93b.zip |
Add support for more qualities, merging video+audio using MSE
Signed-off-by: Jesús <heckyel@hyperbola.info>
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/settings.py b/settings.py index a7dd398..9c64c3a 100644 --- a/settings.py +++ b/settings.py @@ -156,9 +156,14 @@ For security reasons, enabling this is not recommended.''', 'default': 720, 'comment': '', 'options': [ + (144, '144p'), + (240, '240p'), (360, '360p'), (480, '480p'), (720, '720p'), + (1080, '1080p'), + (1440, '1440p'), + (2160, '2160p'), ], 'category': 'playback', }), |