Howler.js 无法在 Internet Explorer 上运行

Howler.js not working on Internet Explorer

我正在使用以下脚本,它在除 IE(11) 以外的所有浏览器中都运行良好。该脚本的主要功能是重定向耳机右侧或左侧的声音。 在所有浏览器中它都工作正常,但在 IE 中,它在两侧都有重定向声音。

var sound = new Howl({
    src: ['1kHz.mp3'],
});
var id = sound.play();
sound.stereo (1.0, id);

请帮我解决这个错误

立体声仅在支持网络音频时有效,但 Internet Explorer 只有 HTML5 音频。您无法在该浏览器中解决此问题。