Answers for "autoplay video with audio html"

2

html sound autoplay

<audio controls autoplay>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Posted by: Guest on March-14-2021
3

html5 video player autoplay

<video controls autoplay muted>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
</video>
Posted by: Guest on March-12-2022

Browse Popular Code Answers by Language