I use a loopback server to play locally cached HTTP Live Streaming files (m3u8, ts, etc). This used to work perfectly in iOS6 circa May-Jun 2013.
Revisiting the app now after about a year with iOS7, it looks like the loopback server does not work anymore. I read at just one source that loopback servers do not work anymore due to additional sandboxing restrictions, but the general silence of the internet on this matter is surprising (I don't see too many hits in Google for "localhost server ios7" or "loopback server ios7") considering how this was in common use, especially when serving HLS in combination with 3rd party (non-native) DRM like PlayReady.
Coming to the question, I'd like verification from the SO community, that iOS7, definitively, does not support loopback servers using any of the following syntaxes:
1. localhost:port
2. 127.0.0.1:port
3. [wifi-ip-address]:port
P.S:
1. Reference links if any, would as always be appreciated.
2. If somebody that uses the latest version of PlayReady or other equivalent non-native DRM, could shed light on how they're able to serve HLS without using a loopback proxy to decrypt the media first, that would be extremely helpful too. Of course, as long as no NDA is violated in the process.
Loopback servers for m3u8 playback do work in iOS 7 + iOS 8, however, you cannot use
localhost:[port]/file.m3u8
. Instead you need to use127.0.0.1:[port]/file.m3u8
. Most DRM providers have patched this by now but you may want to check to see if your DRM library is outdated or still sendinglocalhost
to the player. If so, you can simply replacelocalhost
with127.0.0.1
before the URL is passed to the player and it should work.