I have an HTML5 video player:
<video width="800" height="475" id ="video" controls="" src="" autoplay></video>
That seems to be working 100% in dev but in production videos can take up to 90 seconds to load. I want to figure out if the html5 player is really a streaming player or if it requires a full download first? I was informed by a coworker that setting the tag like this:
<video width="800" height="475" id ="video" controls="" src="" preload="none" autoplay></video>
with the preload option to either none or metadata should force the browser to stream the video instead of buffering the entire thing. What are my options here? Should I abandon the html5 player? I was under the impression that the html5 player was the right way to do streaming video on our intranet. Any suggestions?