I want to use gstreamer library to work with sound in my c++ application. Can you tell me there are any ways to change sound tempo, pitch, etc?
Thanks.
|
|
With pitch plugin you can change sound pitch:
Or tempo:
Or rate. Also there is huge LADSPA-library wrapper ladspa. I had some bad expirience with it, but maybe it is more stable now. It has several plugins to control pitch, tempo and much more. This also may be of interest if you are planning to work with sound:
|
||||
|
|
|
I must admit that i have little experience with GStreamer, but i think you can build a graph with an audio decoder to a raw format, (I.e. 16bit - 44100hz) and then create your own filter using SoundTouch to change Tempo, Rate and Pitch. Hope this helps! |
|||
|
|
|
Starting from max taldykin's suggestion, which returned an error in my version of GStreamer (0.10.35), I found a pipeline that does work. For example, to shift the song 1 step up maintaining the tempo, you should pitch 6%:
does the job for me. |
|||
|
|