diff options
| author | Émilien (perso) <4016501+unixfox@users.noreply.github.com> | 2025-04-04 14:00:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-04 14:00:29 +0200 |
| commit | 0c07e9d27ac773d8423143c11bbcd36eaae0f8e4 (patch) | |
| tree | 84441e99b8691c5cefe579bd305fb846001e1212 | |
| parent | 23ff6135bb4304c6b5e9de6fc06e67bfadc9651a (diff) | |
| download | invidious-0c07e9d27ac773d8423143c11bbcd36eaae0f8e4.tar.gz invidious-0c07e9d27ac773d8423143c11bbcd36eaae0f8e4.tar.bz2 invidious-0c07e9d27ac773d8423143c11bbcd36eaae0f8e4.zip | |
chore: set dash by default (#5216)
| -rw-r--r-- | config/config.example.yml | 4 | ||||
| -rw-r--r-- | src/invidious/config.cr | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/config.example.yml b/config/config.example.yml index 8484c6be..d6119f29 100644 --- a/config/config.example.yml +++ b/config/config.example.yml @@ -858,9 +858,9 @@ default_user_preferences: ## Default video quality. ## ## Accepted values: dash, hd720, medium, small - ## Default: hd720 + ## Default: dash ## - #quality: hd720 + #quality: dash ## ## Default dash video quality. diff --git a/src/invidious/config.cr b/src/invidious/config.cr index 9f5bbc30..4d69854c 100644 --- a/src/invidious/config.cr +++ b/src/invidious/config.cr @@ -35,7 +35,7 @@ struct ConfigPreferences property max_results : Int32 = 40 property notifications_only : Bool = false property player_style : String = "invidious" - property quality : String = "hd720" + property quality : String = "dash" property quality_dash : String = "auto" property default_home : String? = "Popular" property feed_menu : Array(String) = ["Popular", "Trending", "Subscriptions", "Playlists"] |
