Clearly, AVFoundation (and Quicktime X) can demux and play properly encoded .ts containers, because .ts containers underly HTTPS live streaming.

Short of setting up a local web service to serve the .m3u8 and associated .ts files, I'd really like to be able to either: convince AVURLAsset and/or URLAssetWithURL to accept a local file .m3u8 URI as if it were an HTTP URI, or better yet, be able to use AVQueuePlayer to load and play a sequence of .ts files without jumping through the live streaming hoops.

The reason I'm wanting to do this is that I need to locally generate movie assets on-the-fly in a somewhat piecemeal fashion - the entire asset won't be available at once but will be generated as time goes by. Obviously this lends itself to an AVQueuePlayer but for various reasons my asset fragments are packaged in .ts containers. All this sounds like it's perfect for "local" live streaming.

I suspect that URLAssetWithURL does some qualification of the string passed to it and then sets some properties to signal that it's looking at a live streaming source which in turn tell AVPlayer/AVQueuePlayer to expect tracks in .ts form. It probably sees the HTTP and decides that this is live streaming.

So my question is: how would one go about "fooling" AVFoundation into handling a local .m3u8 file exactly as it does a remote one?

And the bonus question is: Has anyone (and if so how) been able to make an AVAsset from a .ts file so that the asset will return the status of the asset's tracks (prepare for playback)?

TIA!

link|improve this question
Same exact problem... I haven't found a solution. Sure would be nice since you can feed this to a MPMoviePlayerController and have Airplay. – Gabe Apr 21 '11 at 21:12
Actually, have you found a way to play .ts files without wrapping them in a HTTP live stream? AVAsset and MPMoviePlayerController both fail when I give them local or network .ts files. I can however use local .m3u8s, even .m3u8s that reference other local .m3u8s. – Gabe Apr 21 '11 at 21:31
No joy -- I ended up putting in a tiny HTTP server and that worked fine but haven't found a way to make an asset directly from a .m3u8 or .ts file. We also took a different approach for experimentation and wrote a proprietary (sorry, can't share) demuxer that reduces the .ts to raw h.264 frames which we then decode and present. It works but is fairly resource costly. Next investigation will be to repackage the raw h.264 as a .mp4 and see how expensive that step is. – Tawpie May 5 '11 at 15:27
I did get this working with local files without an internet connection. You can spin up a HTTP server on the iPhone and then serve the files to the iPhone via localhost. I slightly modified the iPhone HTTP-server project at cocoawithlove.com/2009/07/… to serve the ts and playlist files. – Gabe Jul 7 '11 at 18:09
"TIA" in the google dictionary is "Transient ischemic attack", what do you mean with this? – Tom Brito Apr 26 at 12:39
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.