Reputation: 28282
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?
Upvotes: 4
Views: 2285
Reputation: 23945
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.
Upvotes: 5
Reputation: 213827
Use Core Audio: http://developer.apple.com/mac/library/documentation/MusicAudio/Conceptual/CoreAudioOverview/Introduction/Introduction.html
Upvotes: 2