Can someone explain how we can use Audio Queue services to record sound from Microphone and play it live? Explain how we can achieve it. If possible give code snippets.
Asked
Active
Viewed 1,668 times
1 Answers
1
Use RemoteIO Audio Unit. This awesome code will get you on the right path.

coneybeare
- 33,113
- 21
- 131
- 183
-
Does RemoteIO use Audio Queue Services internally? – RK- Nov 13 '10 at 14:57
-
1RemoteIO is lower level. It is basically the hardware buses that deal with audio. The important part of that page is the callbacks, where you deal with audio buffers. In the write callback, you write the buffers to disk (not implemented there), and in the read buffer, you can process the playback sound in real time if you want, otherwise ignore it – coneybeare Nov 13 '10 at 15:01