I am in need to play audio files that are in my apps bundle (locally stored) one after the other with a seamless transition between them.
Using an AVComposition is not good for me since I only know the second audio file name after the first has started playing and so I cant append them together before hand.
I have tried to work with two AVAudioPlayers and start the second one right when the first ends, but the transition is not 100% accurate and so I am hearing a (very) small silence between the two.
I am thinking that the only way is to break the audio into bytes and play them as stream but I am stuck at this point (considering this is the direction).
Any ideas?
Thanks,