How to specify that the audio/video will start over again, every time it is finished in HTML?


Use the loop attribute to specify that the audio/ video will start over again. You can try to run the following code to implement loop attribute −

Example

<!DOCTYPE HTML>
<html>
   <body>

      <video width = "300" height = "200" controls loop>
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
         Your browser does not support the video element.
      </video>

   </body>
</html>

Updated on: 24-Jun-2020

197 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements