Skip to content

Instantly share code, notes, and snippets.

@s3thi
Created January 11, 2016 11:55
Show Gist options
  • Select an option

  • Save s3thi/ffd365a613b118e32240 to your computer and use it in GitHub Desktop.

Select an option

Save s3thi/ffd365a613b118e32240 to your computer and use it in GitHub Desktop.
sampler.js – playSample()
playSample() {
let bufferSource = this.audioContext.createBufferSource();
bufferSource.buffer = this.audioBuffer;
bufferSource.connect(this.audioContext.destination);
bufferSource.start(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment