How to stop embedded videos on my site from autoplaying

embed src = "clip2.mp4" width = "600" height = "400" scale = "aspect" controller = "true"

This is the code I used to show the video on my website, but does anyone know how to stop the video from automatically playing after the site loads?

+3


source to share


1 answer


you need to add these two attributes to <embed>

autoplay="false"
autostart="false"

      



Some browsers do not recognize true

or false

. In situations like this, try

autoplay="0"
autostart="0"

      

+5


source







All Articles