Skip to content
web audio library for games
JavaScript CSS
Find file

README.md

library on top of Web Audio API. It is a direct adaptation of tQuery.Webaudio.

Examples

Basic examples

// init the library
var webaudio = new WebAudio();
// create a sound
var sound = webaudio.createSound();
// load sound.wav and play it
sound.load('sound.wav', function(sound){
    sound.play();
});
Something went wrong with that request. Please try again.