Web Audio

From Things and Stuff Wiki
Revision as of 22:05, 8 January 2020 by Milk (talk | contribs) (Created page with "== Web Audio API == See also JS libs#Media * w3.org: [https://www.w3.org/TR/webaudio/ Web Audio API] - specification describes a high-level JavaScript API for processing...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Web Audio API

See also JS libs#Media

  • w3.org: Web Audio API - specification describes a high-level JavaScript API for processing and synthesizing audio in web applications. The primary paradigm is of an audio routing graph, where a number of AudioNode objects are connected together to define the overall audio rendering. The actual processing will primarily take place in the underlying implementation (typically optimized Assembly / C / C++ code), but direct JavaScript processing and synthesis is also supported.


  • https://github.com/WebAudio/web-audio-cg - the repository for the W3C Audio Community Group.The Audio Community Group is to gather and incubate new features for the better audio functionality on web. It is also to make it easier for the community to engage with the Audio Working Group.




  • https://wavesurfer-js.org/ a customizable audio waveform visualization, built on top of Web Audio API and HTML5 Canvas. With wavesurfer.js you can create anything from an HTML5 audio player to a sophisticated DJ application.

Libraries




  • http://lowlag.alienbill.com/
  • Timbre.js provides a functional processing and synthesizing audio in your web apps with modern JavaScript's way like jQuery or node.js. It has many T-Object (formally: Timbre Object) that connected together to define the graph-based routing for overall audio rendering. It is a goal of this project to approach the next generation audio processing for web.


  • Band.js - Music Composer - An interface for the Web Audio API that supports rhythms, multiple instruments, repeating sections, and complex time signatures.









Web Audio Modules


  • Embed WAMs into any web page with just a few lines of code
  • WAMs integrate easily with existing web APIs
    • Web Audio API
    • Web MIDI API
    • Web Components
  • and more


WebAudioPlugins


Examples