V
V
voloxa892018-06-01 16:12:27
css
voloxa89, 2018-06-01 16:12:27

Why does html video start every other time in Google Chrome?

Good afternoon! Colleagues, we need your help.
It is necessary that when entering the main page, the background video is automatically launched and played once until the end. I did the layout, the video plays correctly in all browsers except chrome. In chrome with the developer panel open, the video works fine. With a closed one, it starts every other time (you refresh the page with the f5 key - it doesn’t work, you go from the inner page to the main one - it works). This problem is only in chrome.
I tried to add a tail to the src via php rand - so that the video is not cached, but this does not help.
Video embed code:

<video id="banner-video" width="100%" height="auto" autoplay="autoplay" preload="auto" class="banner-video__item">
<source src="/images/template/home_4.mp4" type="video/mp4"></source>
</video>

Answer the question

In order to leave comments, you need to log in

3 answer(s)
P
PavelScron, 2018-06-01
@voloxa89

google browser is stupid in terms of video, add automatic start of video on js. There's a Play method. This is how I solved the problem.
window.onload = function() { document.getElementById('videoID').play();
);
and add Mute to the video

V
voloxa89, 2018-06-04
@voloxa89

Thanks to all! The muted attribute helped!

A
A person from Kazakhstan, 2018-06-01
@LenovoId

Google stuffed its browser with experimental technologies ... and because of this it is very different from its other "Colleagues"
I am not an enemy of Google Chrome but for the past many years it has been performing worse than Safari or Microsoft Ie11

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question