Hello… I have been on here searching though the self help options. I am usually pretty good with figuring out the format however… I am truly stumped. I have muted the video and uploaded it from my customization on my homepage however it still will not autoplay or have the option for it.
I have watched several videos as well.
Youtube link: https://youtu.be/Tu0686se0Aw
my created video is from Canva (also have autoplay enabled)
Can you post a link where you have the video playing? Just because the video has no sound doesn’t mean it’s muted. The browser can’t tell that there’s no sound in the video, it has to be set to muted in the html, or in Youtube’s case, in the embed you have to add a URL parameter.
<iframe width="560" height="315" src="https://www.youtube.com/embed/Tu0686se0Aw?autoplay=1&controls=0&mute=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen=""></iframe>
So in your case this would work for the youtube embed. Notice in the src in the iframe the URL parameters “?autoplay=1&controls=0&muted=1” – Means autoplay the video, hide the controls (play button and such), and mute the video
1 Like
I sent you a private message