Edit This Code:
<!DOCTYPE html>
<html>
<body>

<audio controls onprogress="myFunction()">
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>

<script>
function myFunction() {
    alert("Downloading video");
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy