File size: 355 Bytes
346d87a | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import subprocess
import os
def play_chunk_audio(path):
if not os.path.exists(path):
print(f"❌ Audio file not found: {path}")
return
try:
subprocess.run(["ffplay", "-nodisp", "-autoexit", path], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
except Exception as e:
print(f"Error playing audio: {e}")
|