Answers for "why video is not playing auto in html"

1

html video autoplay not working

<script>
    document.getElementById('vid').play();
</script>
Posted by: Guest on August-24-2021
0

html auto start video

<video controls autoplay>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>
Posted by: Guest on August-15-2021

Browse Popular Code Answers by Language