Files
HeurAMS/.playsound.py

5 lines
96 B
Python

# for Android/Termux
import os
def playsound(p):
os.system(f"play-audio '{p}'")
print(p)