0

If I launch a web page using UIWebView and that page contains a tag with a url specifying a remote video file, then when the user clicks the video to watch it what happens?

Does the web engine stream the video, or download it somewhere, if it downloads it then as its playing within my app is it placed in my app's sandbox?

4

1 に答える 1

1

UIWebView is just creating a Safari browser component, so it should have the same behaviour as it.

The tag in HTML5 for Safari has suport for MP4 format for video, and AAC or MP3 for audio. It will be streamed by means of HTTP Live Streaming and (only in iOS) Adaptive Streaming. I belive that will be done within Safari's sandbox.

于 2012-05-16T19:33:09.217 に答える