-
-
Save biojazzard/3974200 to your computer and use it in GitHub Desktop.
SineWave
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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