I want to change play speed (increase or decrease) of a certain WAV audio file using python wave module.
I tried below thing :
- Read frame rate of input file.
- Double the frame rate.
- Write a new wave file with increased frame rate using output_wave.setparams() function.
But its not working out.
Please suggest.
Thanks in Advance,