Question

I want to change play speed (increase or decrease) of a certain WAV audio file using python wave module.

I tried below thing :

  1. Read frame rate of input file.
  2. Double the frame rate.
  3. Write a new wave file with increased frame rate using output_wave.setparams() function.

But its not working out.

Please suggest.

Thanks in Advance,

Was it helpful?

Solution

WOW!

if you no matter to change the pitch when you increase or decrease the speed, you can just change the sample rate !

Can be very simple using python:

import wave

CHANNELS = 1
swidth = 2
Change_RATE = 2

spf = wave.open('VOZ.wav', 'rb')
RATE=spf.getframerate()
signal = spf.readframes(-1)

wf = wave.open('changed.wav', 'wb')
wf.setnchannels(CHANNELS)
wf.setsampwidth(swidth)
wf.setframerate(RATE*Change_RATE)
wf.writeframes(signal)
wf.close()

increase or decrease the variable Change_RATE !

Now if you need keep the pitch untouched, you need do same type of overlap-add method !

OTHER TIPS

If you change the sampling frequency it has no influence on audiable playback speed. You can play around with this using SoX Sound eXchange, the Swiss Army knife of audio manipulation

There is pySonic library for python look at UserSpeed method of the Song object. pySonic Python wrapper of FMOD Sound library

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top