Skip to content

Instantly share code, notes, and snippets.

@hughrawlinson
Last active February 28, 2016 16:51
Show Gist options
  • Save hughrawlinson/7266ac9be83119fa291c to your computer and use it in GitHub Desktop.
Save hughrawlinson/7266ac9be83119fa291c to your computer and use it in GitHub Desktop.
Links from my Sthlm.js Talk on Web Audio
(function(){
var audioContext = new AudioContext();
window.osc = audioContext.createOscillator();
osc.connect(audioContext.destination);
osc.start();
})();
  • 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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment