paramda-zz

Results 2 comments of paramda-zz

Testing on Raspberry Pi 3 B+ model and have just 2 lines in py code. Python version 3.5.3 `from playsound import playsound` `playsound("alarm.wav")` I get error below even after installing...

@TaylorSMarks , after going through several posts, looks like playsound doesn't work on Raspbian. Found working code at https://raspberrypi.stackexchange.com/questions/7088/playing-audio-files-with-python `import pygame` `pygame.mixer.init()` `pygame.mixer.music.load("myFile.wav")` `pygame.mixer.music.play()` `while pygame.mixer.music.get_busy() == True:` ` continue`...