fix binary name

This commit is contained in:
2026-02-18 16:31:21 +02:00
parent 9fc0df6140
commit 73afda51c6

View File

@@ -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
)