How can I play audio (playsound) in the background of a Python script?

Just change True to False (I use Python 3.7.1)

import playsound
playsound.playsound('storm.mp3', False)
print ('...')

Leave a Comment