Closed GeorgeIvanov closed 1 year ago
play
method will clear the queue, so the above is correct in the sense of, if you want to play multiple items in a queue you would use queue
instead of play
- queue will start playing the first item.
If you want play and then queue item up you'll have to do it with a tap of a button or after perhaps the delegate called audioPlayerDidStartPlaying
the
from the play() method will call the processSource() which will clear the queue after it was populated. My assumption being that the first lines of code are correct and the queueing of the URLs should be called after the play method which starts the audio engine if needed.