0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00

wait a bit longer

This commit is contained in:
2025-08-31 20:58:04 +02:00
parent 42c78d74f7
commit a9b6b51080

View File

@@ -352,7 +352,7 @@ def play_audio_with_crossfade(current_track_path, next_track_path=None, resume_s
next_process = create_audio_process(next_track_path, fade_in=True, fade_out=True)
# Wait for crossfade to complete
time.sleep(CROSSFADE_DURATION)
time.sleep(CROSSFADE_DURATION * 1.5)
with process_lock:
if current_process and current_process.poll() is None: