Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increase/Decrease Play Speed of a WAV file Python

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,

like image 206
Dev.K. Avatar asked Mar 31 '14 07:03

Dev.K.


2 Answers

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 !

like image 196
ederwander Avatar answered Sep 22 '22 23:09

ederwander


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

like image 28
mcer Avatar answered Sep 25 '22 23:09

mcer