views:

167

answers:

1

I have a sound that is about 2 seconds long which I have set it's it's numberOfLoops property to -1, but it has a .5 second lag between loops i want the sound to fade into itself when it is looping. Help please!

A: 

You can try to use some low-level API to work with sound. for example, I had good results using OpenAL on the iPhone. Also ideal looping is quiet hard, because your audio file should have, for example almost equivalent parameters(frequency, for exaple) to make people not to hear when the file is played from the beginning again.

Morion