If I continuously play a sound with soundjs in Chrome, there is an infinite increase of WebAudioSoundInstance
count and therefore memory consumption grows.
How can one avoid it?
createjs.Sound.registerSound("audio/alarm.mp3", "alarm");
setInterval(function () {
createjs.Sound.play("alarm");
}, 6500);
For now I've found this dirty workaround: