From fe5037cbcd11fa284fb413a70d3a3d2fe1cda82e Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 6 Nov 2025 04:06:21 +0100 Subject: [PATCH] try other values for readrate --- music_assistant/controllers/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/controllers/streams.py b/music_assistant/controllers/streams.py index f6e2189c..ef090f49 100644 --- a/music_assistant/controllers/streams.py +++ b/music_assistant/controllers/streams.py @@ -505,7 +505,7 @@ class StreamsController(CoreController): read_rate_input_args = None # disable readrate for DLNA players else: # allow buffer ahead of 8 seconds and read slightly faster than realtime - read_rate_input_args = ["-readrate", "1.05", "-readrate_initial_burst", "8"] + read_rate_input_args = ["-readrate", "1.2", "-readrate_initial_burst", "10"] first_chunk_received = False async for chunk in get_ffmpeg_stream( -- 2.34.1