-1

When trying to play the file Jingle_Lose_01.wav from https://opengameart.org/content/8-bit-sound-effects-library (converted to ogg) through pygame, the sound comes out much lower pitched than normal.

import pygame
pygame.init()
sound = pygame.mixer.Sound('test.ogg')
sound.play()

1 Answers1

0

Try to change the hertz to 44100

ffmpeg -i test.ogg -ar 44100 out.ogg

Then verify

file out.ogg

Bytez
  • 63
  • 1
  • 1
  • 4