Skip to content

Instantly share code, notes, and snippets.

@deepaksharma192
Created June 28, 2013 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deepaksharma192/5884140 to your computer and use it in GitHub Desktop.
Save deepaksharma192/5884140 to your computer and use it in GitHub Desktop.
auto play audio on ipad
AudioSFX = function( _p, _autoplay ) {
var self = this;
var parent = _p;
this.sounds = new Array();
this.context = new webkitAudioContext();
this.autoplay = _autoplay;
this.play = function( sound ) {
var source = self.context.createBufferSource();
source.buffer = self.sounds[sound];
source.connect( self.context.destination );
source.noteOn( 0 );
}
this.load = function() {
var request = new XMLHttpRequest();
request.addEventListener( 'load', function(e) {
self.context.decodeAudioData( request.response, function(decoded_data) {
self.sounds[0] = decoded_data;
if( self.autoplay ) {
self.play(0);
}
}, function(e){
console.log("error");
});
}, false);
request.open( 'GET', 'wav/sfx.wav', true );
request.responseType = "arraybuffer";
request.send();
}
self.load();
}
var sfx = new AudioSFX( this, true ); // true for autoplay
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment