I have the code shown below.And It is playing the d0.wav audio file.But my problem is, it is playing at very high speed even anybody cannot recognize what is saying in the audio.I recorded the d0.wav file using Speech2go software and saved it as a wav file.But when I'm saving it, audio files' sound is medium.I want to know why this is happening and how to correct it. Please, someone, guide me.Below is my code.
import time, sys
from pygame import mixer
mixer.init()
sound=mixer.Sound("d0.wav")
sound.play()
time.sleep(10000)