From e00ff98286f287993dd329079cef924d27bc3e85 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Sun, 2 Nov 2025 18:01:01 +0100 Subject: [PATCH] Readrate limiter tweaks on builtin provider --- music_assistant/providers/builtin_player/player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/providers/builtin_player/player.py b/music_assistant/providers/builtin_player/player.py index c481968b..48ff4306 100644 --- a/music_assistant/providers/builtin_player/player.py +++ b/music_assistant/providers/builtin_player/player.py @@ -293,7 +293,7 @@ class BuiltinPlayer(Player): # Apple ignores "Accept-Ranges=none" on iOS and iPadOS for some reason, # so we need to slowly feed the music to avoid the Browser stopping and later # restarting the audio stream (from a wrong position!) by keeping the buffer short. - extra_input_args=["-readrate", "1.0", "-readrate_initial_burst", "15"], + extra_input_args=["-readrate", "1.05", "-readrate_initial_burst", "8"], filter_params=get_player_filter_params(self.mass, player_id, pcm_format, stream_format), ): try: -- 2.34.1