From 5adf265527e84c7153a368e8ea4638ef695d346a Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 17 Jan 2025 00:02:37 +0100 Subject: [PATCH] Add 192000 to supported sample rates for chromecast According to a community member that should work --- music_assistant/providers/chromecast/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1