x
 
<!DOCTYPE html> 
<html> 
<body> 
<audio controls onloadedmetadata="myFunction()">
  <source src="/i/horse.ogg" type="audio/ogg">
  <source src="/i/horse.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>
<script>
function myFunction() {
  alert("Meta data for audio loaded");
}
</script>
</body> 
</html>