From: Marcel van der Veldt Date: Thu, 16 Jan 2025 23:02:37 +0000 (+0100) Subject: Add 192000 to supported sample rates for chromecast X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=5adf265527e84c7153a368e8ea4638ef695d346a;p=music-assistant-server.git Add 192000 to supported sample rates for chromecast According to a community member that should work --- diff --git a/music_assistant/providers/chromecast/__init__.py b/music_assistant/providers/chromecast/__init__.py index dd8c334b..12313a4b 100644 --- a/music_assistant/providers/chromecast/__init__.py +++ b/music_assistant/providers/chromecast/__init__.py @@ -56,7 +56,7 @@ PLAYER_CONFIG_ENTRIES = ( # originally/officially cast supports 96k sample rate (even for groups) # but it seems a (recent?) update broke this ?! # For now only set safe default values and let the user try out higher values -CONF_ENTRY_SAMPLE_RATES_CAST = create_sample_rates_config_entry(96000, 24, 48000, 24) +CONF_ENTRY_SAMPLE_RATES_CAST = create_sample_rates_config_entry(192000, 24, 48000, 24) CONF_ENTRY_SAMPLE_RATES_CAST_GROUP = create_sample_rates_config_entry(96000, 24, 44100, 16)