Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<audio id="myAudio" controls>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>
<p>Click the button to get the exact length (duration) of the audio, in seconds.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myAudio").duration;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
<!-- Mirrored from www.mdssup.ma/jsref/tryit.asp?filename=tryjsref_audio_duration by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 15:52:57 GMT -->
</html>