Using an AVPlayer returns a "non-Multipath connection" error Using an AVPlayer returns a "non-Multipath connection" error xcode xcode

Using an AVPlayer returns a "non-Multipath connection" error


I would say this log isn't necessarily relevant. I was getting this error when trying to playback on the simulator but it wasn't happening on a real device.


One workaround would be to use a 12.4.x simulator as it does not exhibit this issue. Only the 13.x simulators are showing this error. It happens to repeatedly that it slows down Simulator to a craw until all requested tracks have been buffered.

To combat this while testing, I am either not turning on AVPlayer or I am only buffering a short track.

To cut down on the number of errors try initing your AVPlayer like so:

var avPlayer : AVPlayer = AVPlayer()

This may cut down the errors by 30%.