I'm trying to play multiple sounds at the same time.

The approach initially I've taken was to create several players , but it seems wrong one.

What's the best way to play several audio files at the same time.

Is it through making them AVAssets, but in this case how would I stop and play them whenever I want.

Really appreciate your help.

The reason I need AVPlayer is to fetch sounds from the iPod Library.

I finally got an answer from TechSupport of Apple Dev Team and it seems I'm on the right track when I decided to use several AVPlayer.

link|improve this question

58% accept rate
I'm pretty sure that multiple AVAudioPlayers is the way to go if you have to use AVAudioPlayers. Just set them up and trigger them at the same time. Remember to release any allocations and you should be fine. Just keep in mind that AVAudio is kind of slow as compared to something like openAL. – XenElement Jun 1 '11 at 3:43
the problem with 2 players I'm facing is that . Once I'm starting to play the second player while first one is on, the first one stops for fraction of second and than they continue playing. – Rouslan Karimov Jun 1 '11 at 8:57
I haven't tried implementing openAL with the iphone library yet, but there is an excellent free openAL sound manager that is already set up and optimized. See if it helps: 71squared.com/2011/01/latest-sound-manager – XenElement Jun 1 '11 at 14:50
feedback

1 Answer

For every sound you want to make make a new AVPlayer.

NSURL *url = [NSURL URLWithString:pathToYourFile];
AVPlayer *audioPlayer = [[AVPlayer alloc] initWithURL:url];
[audioPlayer play];

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.