Fix content type for Sqeezelite multiclient streams (#2967)
authorMarvin Schenkel <marvinschenkel@gmail.com>
Tue, 13 Jan 2026 18:22:19 +0000 (19:22 +0100)
committerGitHub <noreply@github.com>
Tue, 13 Jan 2026 18:22:19 +0000 (19:22 +0100)
music_assistant/providers/squeezelite/player.py

index 8a6a62f27c5e184be02db92e44c51c6ecc826896..4887b44e8b0bb44fbc229685c769a68429b289f6 100644 (file)
@@ -245,7 +245,7 @@ class SqueezelitePlayer(Player):
         master_audio_format = AudioFormat(
             content_type=INTERNAL_PCM_FORMAT.content_type,
             sample_rate=96000,
-            bit_depth=24,
+            bit_depth=INTERNAL_PCM_FORMAT.bit_depth,
             channels=2,
         )