+ 1
How to stop Autoplay or autostart of video in a webpage??
I used this code -: <embed src="abc.mp4" autoplay="0" autostart="0" width="490" height="490"> </embed> I have even tried false instead of 0 but no difference the video starts when I load the webpage....😥😥😥I even googled this question and applied the solution "false" but the chrome doesn't apply that code....and the video auto starts
5 Antworten
+ 22
use <video> tag instead...
+ 14
<video controls>
<source src="http://www.sololearn.com/uploads/video.mp4" type="video/mp4">
<source src="http://www.sololearn.com/uploads/video.ogg" type="video/ogg">
Video is not supported by your browser
</video>
+ 13
Just remove it
+ 1
can u plz write the code I will implement it right now???
+ 1
nope autoplay didn't stop buddy