Execute a script each time the volume of a video/audio is changed in HTML?



The onvolumechange attribute trigger when the user change the volume of the video or audio accessed on the web page. This change can be volume up, volume down, mute, etc.

Example

You can try to run the following code to implement onvolumechange attribute −

<!DOCTYPE html>
<html>
   <body>
      <h2 id="test">Play</h2>
      <video id = "myid" width = "320" height = "176" controls onvolumechange = "myFunction()">
         <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>
      <script>
         function myFunction() {
         document.getElementById("test").innerHTML = "Volume changed";
         }
      </script>
   </body>
</html>

Advertisements