- Meyda - Audio Feature Extraction for the web.
- The Awesome List - A list of resources for Web Audio.
- Web Audio Slack - A community of Web Audio developers, including implementors, users, and working-group members.
- Web Audio Weekly Newsletter - A weekly newsletter full of awesome things going on in Web Audio.
- AudioCrawl - A showcase of cool things built with Web Audio.
- The Spec - The official, up to the second Web Audio API specification.
- The GitHub - The GitHub repo in which the spec is being developed/maintained.
- Web Audio Conference Program - The program of the first Web Audio Conference, including a variety of very interesting papers.
Last active
February 28, 2016 16:51
-
-
Save hughrawlinson/7266ac9be83119fa291c to your computer and use it in GitHub Desktop.
Links from my Sthlm.js Talk on Web Audio
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
(function(){ | |
var audioContext = new AudioContext(); | |
window.osc = audioContext.createOscillator(); | |
osc.connect(audioContext.destination); | |
osc.start(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment