I'm using AVPlayer to play live audio streamed from the Internet, but when it's buffering it pauses the audio, and then plays again.
How to prevent this pause while buffering?
|
I'm using How to prevent this pause while buffering? |
|||
|
|
|
If you're having to pause while playing, then the instantaneous bitrate of the streaming audio must be too high for the network connection you're testing with. Use a larger buffer, decrease the bitrate, or make the network connection better. |
|||
|
Winston, One thing you could do use watch the loadedTimeRanges property on the current AVPlayerItem, as well as the playbackLikelyToKeepUp, duration, and playbackBufferEmpty properties. Between those four, you should be able to work out some logic on how much of the track has buffered, and what your minimum buffering threshold should be to allow playback. |
|||
|
|