Reputation: 101
Can AVFoundation Framework change the Pitch of the sound recorded? If it's possible, how to change the voice's pitch?
Upvotes: 0
Views: 931
Reputation: 32497
AFAIK AVFoundation does not support DSP effects such as pitch shift (but someone please prove me wrong...). However, iOS supports OpenAL, which gives you a lot more options. To change pitch, use
alSourcef(source, AL_PITCH, myPitch)
Upvotes: 1