Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creating a buzz.sound throws a NotImplemented error #47

Open
maitredede opened this issue Aug 22, 2013 · 2 comments
Open

Creating a buzz.sound throws a NotImplemented error #47

maitredede opened this issue Aug 22, 2013 · 2 comments

Comments

@maitredede
Copy link

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.

@leomelin
Copy link

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!');
    }

-- Leo

@jaysalvat
Copy link
Owner

Hello.

Thanks for the feedbacks.

Unfortunately:
http://stackoverflow.com/questions/19455970/internet-explorer-11-and-html5-sound-playback

I will try to find a clean way to mute the error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants