From 73afda51c6f6789e1fbc923a5802cb4224566e4e Mon Sep 17 00:00:00 2001 From: Aaro Varis Date: Wed, 18 Feb 2026 16:31:21 +0200 Subject: [PATCH] fix binary name --- src/audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio.py b/src/audio.py index 7bbbb58..0432df9 100644 --- a/src/audio.py +++ b/src/audio.py @@ -31,7 +31,7 @@ def play_audio(file_path: str, loop: bool = False) -> Callable[[], None]: if loop: # Use sox's play command with repeat for looping wav files process = subprocess.Popen( - ["play", file_path, "repeat", "-"], + ["aplay", file_path, "repeat", "-"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL )