vote up 0 vote down star

Hi

I am using multiple instances of AVAudioPlayer to play multiple audio files simultaneously. I run a loop to start playing the audio files (prepareToPlay is called beforehand and the loop only makes a call to the play method)

But invariably, one of the players does not play in sync. How can I ensure that all the 4 players start playing audio simultaneously?

Thanks.

flag

I am getting a lag of 0.8 seconds! Please help. even this lag is very audible! – lostInTransit Nov 6 at 15:37

2 Answers

vote up 0 vote down check

Unfortunately, you can't. AVAudioPlayer doesn't provide any mechanism for fine-grained control of start time. The currentTime property sets the point in the file to read from, it doesn't guarantee when the AVAudioPlayer instance will start playing in system time, which is what you need to sync multiple audio streams.

When I need this behavior, I use the RemoteIO Audio Unit + the 3D Mixer Audio Unit + ExtAudioFile.

link|flag
I also want to provide an option for seeking. Can you point me to some samples which would explain the use of 3D Mixer? And wouldn't it create a lag before starting to play while the audio files are being mixed? – lostInTransit Nov 6 at 14:46
Here's Apple's sample code for the mixer AU: developer.apple.com/iphone/library/… – Art Gillespie Nov 6 at 17:44
As for lag/latency, the mixer doesn't introduce any additional latency. If the current session's buffer size is 128 samples, for example, you'll hear audio about 3ms after you start feeding it to the mixer's callback, just as you would if you fed it straight to the RemoteIO's callback. – Art Gillespie Nov 6 at 17:47
vote up 0 vote down

Try to set same currentTime property value for every AVAudioPlayer object.

link|flag
The currentTime for all is set to 0. – lostInTransit Nov 6 at 14:05

Your Answer

Get an OpenID
or

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