Reputation:
With the AVAudioPlayer, can I stream live audio from my microphone?
If so, how would I do this?
Upvotes: 2
Views: 1265
Reputation: 120
With AudioQueues you'll always have a slight delay when filling up the buffer, AudioUnits would be the way to go as you can work with sound instantly.
Upvotes: 1
Reputation: 527
No.
AVAudioPlayer only can play audio files.
Depending on what you're trying to accomplish, you might want to look into AudioQueues and the aurioTouch example from Apple's sample code
Upvotes: 1