I'm doing a game with wx.python and when I try to add a background music using wx.Sound I got the following error :
Python error Sound file 'images/game.wav' is in unsupported format.
This is the code I used. I've seen this code many times on the web but none had the same problem.
sound = wx.Sound("images/game.wav")
sound.Play(wx.SOUND_ASYNC)
Any suggestions? Thanks