In the documentation I see several frameworks for audio. All of them seem to be targeted at playing and recording audio. So I wonder what the big differences are between these?

Audio Toolbox, Audio Unit, AV Foundation, and Core Audio. Or did I miss a guide that gives a good overview of all these?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Check out the "Playing Audio" section of this guide, which gives a good overview of what's what:

http://developer.apple.com/iphone/library/referencelibrary/GettingStarted/GS%5FAudioVideo%5FiPhone/index.html

link|improve this answer
feedback

Core Audio is the lowest-level of all the frameworks and also the oldest.

Audio Toolbox is just above Core Audio and provides many different APIs that make it easier to deal with sound but still gives you a lot of control. There's ExtAudioFile, AudioConverter, and several other useful APIs.

Audio Unit is a framework for working with audio processing chains for both sampled audio data and MIDI. It's where the mixer and the various filters and effects such as reverb live.

AV Foundation is a new and fairly high-level API for recording and playing audio on the iPhone OS. The first three frameworks are found on both Mac OS and iPhone OS, but AV Foundation is only on the iPhone.

link|improve this answer
feedback

This site has a short and excellent overview of core features the different API's: http://cocoawithlove.com/2011/03/history-of-ios-media-apis-iphone-os-20.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.