vote up 0 vote down star

I am trying to make a small music app on the iphone. I want to have an octave a piano which will respond to touches and play the key or keys that the user touches. How would i be able to get two or more sounds to play at the same time so it sounds like a chord? I tried using AVFoundation but the two sounds just play one after the other.

flag

1 Answer

vote up 2 vote down

You would have to use AudioQueueServices. The docs are here:

Apple.com - AudioQueueServices Reference

Essentially you would have to write some code to open up multiple outputs, and then prime the queue and have them block before AudioQueueStart(AudioQueueRef aq) until everything was primed and ready and then let them go.

AVAudioPlayer isn't really good enough for this sort of thing, unfortunately.

link|flag

Your Answer

Get an OpenID
or

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