You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @maitredede !
I had the same problem with IE11 inside virtualBox and the solution was to wrap the creation of new buzz.sound in buzz.isSupported() if-clause like so:
if (buzz.isSupported()) {
var newNotifTone = new buzz.sound( "someFileName", {
formats: [ "wav" ]
});
}
else {
console.log('Sound is NOT SUPPORTED!');
}
Hi,
I'm using IE10 on a Windows 2008R2 x64 server.
When I try to create a sound, I have a javascript error : Not Implemented.
The error is raised when the browser call "this.audio.preload = ...".
Edit : No audio card on the machine, windows service sound is disabled.
The text was updated successfully, but these errors were encountered: