AudioBox allows the user to play music and sound effects on any platform as long as you have the files.
- Initial release
Install via pip:
pip install audioboxExample code:
from audiobox import *
generate_example_files() # Generates two audio clips for example use
sfx("example_sfx") # Handles .mp3 and .wav | Only use the file name and not extension
wait(5)
play_music("example_music") # Handles .mp3 and .wav | Only use the file name and not extension
wait(165)