Video not autoplaying despite settings
Hello,
I want the video to start playing automatically (without sound). I enabled autoplay, loop, and muted in the settings, but it still doesn't start playing. What am I doing wrong?
Best,
Steve
Hello,
I want the video to start playing automatically (without sound). I enabled autoplay, loop, and muted in the settings, but it still doesn't start playing. What am I doing wrong?
Best,
Steve
Comments
Hi,
You have a YouTube video placed. The parameters you pointed to with an arrow refer to HTML5 video.
For the YouTube video, use the field directly below it.
https://developers.google.com/youtube/player_parameters#Parameters
Best regards
Hi,
Added code: autoplay=1&loop=1 but with it plays only 1 second, then stops: https://carbonvega.com/
How can make it work?
Best,
Steve
You also must add the mute parameter as modern browsers block autoplay for videos that are not muted.
Best regards
Hi,
Added, but still not working. Tested with: ?autoplay=1&loop=1&muted=1 and ?autoplay=1&loop=1&muted
ChatGPT suggested html code, is it possible to add?
Best,
Steve
It should be like this:
autoplay=1&loop=1&mute=1
. So omit the question mark at the beginning, and it should be mute instead of muted.Best regards
With it works, thank you very much!