From 38b692f9e1f7192127c1334af80c102e1f9cf90b Mon Sep 17 00:00:00 2001 From: Santiago Soto Date: Sat, 5 Apr 2025 10:35:15 -0300 Subject: [PATCH] Snapcast fix external server stream (#2103) --- music_assistant/providers/snapcast/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/music_assistant/providers/snapcast/__init__.py b/music_assistant/providers/snapcast/__init__.py index 491d37ae..b1add931 100644 --- a/music_assistant/providers/snapcast/__init__.py +++ b/music_assistant/providers/snapcast/__init__.py @@ -595,6 +595,7 @@ class SnapCastProvider(PlayerProvider): stream_path = stream.path if not stream.path: stream_path = "tcp://" + stream._stream["uri"]["host"] + stream_path = stream_path.replace("0.0.0.0", self._snapcast_server_host) self.logger.debug("Start streaming to %s", stream_path) async with FFMpeg( -- 2.34.1