Chore: use safer default sample rates config
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Wed, 19 Feb 2025 20:31:46 +0000 (21:31 +0100)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Wed, 19 Feb 2025 20:31:46 +0000 (21:31 +0100)
music_assistant/constants.py

index 3ce9aa13f42cd40c70af259142db7bc68b3ae406..95f89d2f3143933079045f01f3535d23141f12ac 100644 (file)
@@ -440,7 +440,7 @@ CONF_ENTRY_SAMPLE_RATES = ConfigEntry(
         ConfigValueOption("384kHz / 16 bits", f"384000{MULTI_VALUE_SPLITTER}16"),
         ConfigValueOption("384kHz / 24 bits", f"384000{MULTI_VALUE_SPLITTER}24"),
     ],
-    default_value=[f"44100{MULTI_VALUE_SPLITTER}16", f"44100{MULTI_VALUE_SPLITTER}24"],
+    default_value=[f"44100{MULTI_VALUE_SPLITTER}16", f"48000{MULTI_VALUE_SPLITTER}16"],
     required=True,
     label="Sample rates supported by this player",
     category="advanced",