A python wrapper and better CLI for the macOS tool afplay (audio-file player).
From pip:
pip install afplay-pyFrom source (from the root project directory):
pip install .Play an audio file using the CLI:
afplay-py ~/path/to/file.mp3NOTE: The intent is for this CLI to not have some of the problems the regular tool does.
Play an audio file using Python:
from afplay import afplay
afplay("path/to/file.mp3", volume=2, time=100, leaks=True)Check if afplay is installed:
from afplay import is_installed
print(is_installed())