I have been recently working on a new game and I am finally finished with it and I was adding some music as some last touches but then I realized that the sounds were very poor quality and so I tried to make it into different extensions and wav, mp3 don't work and I was trying OGG and it says it 'failed to load'. I need help either fixing the OGG loading or fixing the poor quality given with wav and mp3. I am on windows 10 Here I load the audio files:
intro_mp3 = mixer.Sound("audio/intro.ogg")
choosing_mp3 = mixer.Sound('audio/choosing.ogg')
battle_mp3 = mixer.Sound('audio/battle.ogg')
win_mp3 = mixer.Sound('audio/win.ogg')
lose_mp3 = mixer.Sound('audio/lose.ogg')
and here I play it outside of this if statement:
if start_button.draw(screen):
sleep(0.2)
game_screen()
start_button.remove()
start.fill((0, 0, 0, 0))
intro = True
chosen_fighter = True
bool_appearer = True
print("START")
screen.blit(tutorial, (50, 0))
intro_mp3.play()
Please help!