audio.js player not loading in IE 9 and below

785 Views Asked by At

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]"

enter image description here

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>
1

There are 1 best solutions below

2
On

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

# Server can play audio
# MP3 audio
AddType audio/mpeg3 .mp3
AddType audio/mp3 .mp3
AddType audio/x-mpeg3 .mp3

# Ogg Vorbis audio
AddType audio/ogg .ogg
AddType audio/ogg .oga

The IE needs the right application-header, chrome and firefox are smart enough in the most cases.