views:

55

answers:

2

I was hoping to make an application that did real time voice manipulation like the the T-Pain App. But AVAudioRecorder only enables a post processing from of audio manipulation. Is there another API that will enable real-time audio processing?

thanks!

A: 

The answers to this question should help you.

GregInYEG
A: 

The iOS Audio Unit RemoteIO API allows for very low latency audio recording and playback, and the raw audio sample buffers are available for modification in between the audio record and play buffer callbacks.

See Apple's aurioTouch sample app for example source code.

hotpaw2