You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import simpleaudio as sa
|
|
import sys
|
|
|
|
filename = sys.argv[1]
|
|
'
|
|
wave_obj = sa.WaveObject.from_wave_file(filename)
|
|
play_obj = wave_obj.play()
|
|
play_obj.wait_done() # Wait until sound has finished playing
|