Video hangs in the reset.
-
Hello!
There's a problem with html5 video player in Android in new Google Chrome versions.
Video starts fast, but if you retread, turning on a full screen, it hangs and doesn't reproduce.
The plyer is designed to:
<video controls="1" preload="metadata" name="media"> <source src="http://site.ru/video.mp4" type="video/mp4"> </video>
It was found that if attribute preload value autoIt's all right.
Question: Is there any other solution, because a complete pre-loading of the video will put the server heavily on the video?
I'd like to do anything without pre-loading or limiting myself to metadata.
IOS and PC are fine, the problem is only in the adroide.
-
Try this, and please add some other format to the mp4s (may be re-converted)
WebM
video/webm
orOgg
video/ogg
Here's an example:<video width="600" height="440" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> </video>