user100051
user100051

Reputation:

AVAudioPlayer iPhone question

With the AVAudioPlayer, can I stream live audio from my microphone?

If so, how would I do this?

Upvotes: 2

Views: 1265

Answers (3)

user117312
user117312

Reputation:

Just as pjapers said. You should use AudioUnits

Upvotes: 1

pjaspers
pjaspers

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

qrunchmonkey
qrunchmonkey

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

Related Questions