I have a video file like this which I am not able to play in the browser unless it is fully loaded. I am using the code below to play my files and I have been successful with all mp4s remotely being loaded except the ones I recorded as such. How can I play these files on my browser without having to wait for them to be fully loaded?
<html>
<body>
<h1>The video src attribute</h1>
<video width="320" height="240" controls src="movie.ogg">
Your browser does not support the video tag.
</video>
<p><b>Note:</b> The .ogg fileformat is not supported in old IE and Safari.</p>
</body>
</html>