I am using pygame with python 2.7.10 and ive tried this on 3 different computers, linux,mac,and windows. It has not worked on either of those and I have tried many different types of sound files. (ex. .wav and .mp3). I fixed in issue with using a different way to play sound by doing it this way. sound1 = pygame.mixer.Sound('example.wav') and then after making a simple window I do this sound1.play()
This doesnt work and just makes a beeping sound, which it not what the sound is. The other way was with the pygame.mixer.music.load version which doesnt work and just says "cant read file (example)
Does anyone else know how I can make this work? Ive put the files in the same directory btw