views:

47

answers:

2

I am looking to write a small audio processing program, and I need some way to get audio input from the microphone in a Macbook.

Buffer polling? Notifications? What class/framework should I be aware of?

+5  A: 

one of the easiest ways is with audio queues. its fairly abstracted, with a fair bit of doco and examples, simpler than delving into audio units, and the depths of core audio.

here is the official link.

Aran Mulholland