Reputation: 64366
I need to increase tempo of voice in sound file. (This effect will speed up the playing but leave the original tempo). Any ways to do this with c++ and Qt media library? Thanks.
Any links are excepted.
Upvotes: 1
Views: 1515
Reputation: 22376
Qt cannot do what you want. Moreover, pitch-shifting is computationally intensive task involving fast Fourier transforms and then some trickery to counteract the phase shifting. Couple FFTW3 with this excellent guide, and you can do it.
Upvotes: 0
Reputation: 134
Qt has hardly any sound processing capabilities, so nothing as advanced as what the original poster wants exists in it.
Upvotes: 1