# webaudio.js **Repository Path**: mirrors_jeromeetienne/webaudio.js ## Basic Information - **Project Name**: webaudio.js - **Description**: web audio library for games - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2025-10-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README library on top of Web Audio API. It is a direct adaptation of [tQuery.Webaudio](http://learningthreejs.com/blog/2012/03/20/sounds-for-more-realistic-3d/). ## Examples * [minimal](http://jeromeetienne.github.com/webaudio.js/examples/) * [Sample use with tQuery](http://jeromeetienne.github.com/webaudio.js/examples/sample-tquery.html) * [Playground with tQuery](http://jeromeetienne.github.com/webaudio.js/examples/playground/) ## Basic examples ```javascript // 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(); }); ```