diff options
| author | Astounds <kirito@disroot.org> | 2026-03-22 14:17:23 -0500 |
|---|---|---|
| committer | Astounds <kirito@disroot.org> | 2026-03-22 14:17:23 -0500 |
| commit | 84e1acaab8f7e4e7e36d19e3b6847a0ab6c33759 (patch) | |
| tree | a4021823e3e29d1efb57271dda5024825983bacf /settings.py | |
| parent | ed4b05d9b616c688afc6ef03dc404009c4abfc0f (diff) | |
| download | yt-local-84e1acaab8f7e4e7e36d19e3b6847a0ab6c33759.tar.lz yt-local-84e1acaab8f7e4e7e36d19e3b6847a0ab6c33759.tar.xz yt-local-84e1acaab8f7e4e7e36d19e3b6847a0ab6c33759.zip | |
yt-dlp
Diffstat (limited to 'settings.py')
| -rw-r--r-- | settings.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/settings.py b/settings.py index 2de5efa..27cfd7d 100644 --- a/settings.py +++ b/settings.py @@ -296,6 +296,17 @@ Archive: https://archive.ph/OZQbN''', 'category': 'interface', }), + ('language', { + 'type': str, + 'default': 'en', + 'comment': 'Interface language', + 'options': [ + ('en', 'English'), + ('es', 'EspaƱol'), + ], + 'category': 'interface', + }), + ('embed_page_mode', { 'type': bool, 'label': 'Enable embed page', @@ -329,6 +340,15 @@ Archive: https://archive.ph/OZQbN''', 'hidden': True, }), + ('ytdlp_enabled', { + 'type': bool, + 'default': True, + 'comment': '''Enable yt-dlp integration for multi-language audio and subtitles''', + 'hidden': False, + 'label': 'Enable yt-dlp integration', + 'category': 'playback', + }), + ('settings_version', { 'type': int, 'default': 6, |
