Gerald Stojakovic
Gerald Stojakovic

Reputation: 101

Objective C: AVFoundation Changing Pitch is it possible?

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

Answers (1)

Krumelur
Krumelur

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

Related Questions