Skip to content

Instantly share code, notes, and snippets.

@biojazzard
Created October 29, 2012 15:31
Show Gist options
  • Select an option

  • Save biojazzard/3974200 to your computer and use it in GitHub Desktop.

Select an option

Save biojazzard/3974200 to your computer and use it in GitHub Desktop.
SineWave
/* As seen here: http://www.youtube.com/watch?v=PN8Eg1K9xjE */
var context = new webkitAudioContext();
var sineWave = context.createOscillator();
sineWave.connect(context.destination);
sineWave.noteOn(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment