The audio.js player is not loading in Internet Explorer 9. When I use mp3/ogg/wav format, they all show the same error:
Error loading: "[object Object]"
However, it does work on Chrome and Firefox. This is the code I'm using:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script src="./audiojs/audio.min.js"></script>
<script>
audiojs.events.ready(function() {
audiojs.createAll();
});
</script>
</head>
<body>
<audio src="ace.wav" preload="auto"></audio>
</body>
</html>
You should first look in the network-tab of the developertools and check that the audio-files is loaded. I did get the same error for videos and i had to extend the mineTypes for the IE.
Try to extend your .htaccess with
The IE needs the right application-header, chrome and firefox are smart enough in the most cases.