Skip to content

Instantly share code, notes, and snippets.

@automata
Created April 2, 2012 04:06
Show Gist options
  • Save automata/2280632 to your computer and use it in GitHub Desktop.
Save automata/2280632 to your computer and use it in GitHub Desktop.
simple osc with audio data api
var output = new Audio();
output.mozSetup(1, 44100);
var samples = new Float32Array(22050);
for(var i=0; i< samples.length; i++){
samples[i] = Math.sin(i/20);
}
output.mozWriteAudio(samples);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment