All you need to know about the Web Audio API
Did you know Javascript has a constantly evolving high-level API for processing and synthesizing audio? How cool is that!
The goal of the audio API is to replicate features found in desktop audio production applications. Some of the most prominent features are mixing, processing, filtering, etc.
The web audio API has a lot of potential and can do awesome stuff. But first — how well is the API supported across the board?


Cool, worth digging into. 👍
What is the web audio API capable of doing?
Good question! Here are couple examples demonstrating the capabilities of the Web Audio API. Make sure you have sound on.




The web audio API handles audio operation through an audio context. Everything starts from the audio context. With the audio context you can hook up different audio nodes.
Audio nodes are linked by their inputs and outputs. The chain of inputs and outputs going through a node create a destination — destination being the audio frequency which we pick up with our ears.


If you’re the type of person who wants to know all the tiny details, here’s a sweet link to get you started.
This article explains some of the audio theory behind how the features of the Web Audio API work. It won’t turn you…developer.mozilla.org
If you’re more into visual learning, here’s a great introduction talk about the Web Audio — check it out!

One of the most interesting features of the Web Audio API is the ability to extract frequency, waveform, and other data from your audio source, which can then be used to create visualizations.








This article explains how, and provides a couple of basic use cases.
To extract data from your audio source, you need an AnalyserNode, which is created using the…developer.mozilla.org
If you’re keen on learning the audio API in depth — here’s a great series.

Here’s a free book about the Web Audio API— by Boris_Smus (interaction engineer at Google).


A glance at the API
The web audio API is relatively intuitive to understand. Here’s an abstract example how to use the API.
Breakdown of the steps;
- We create a new
AudioContextobject by calling it withnewkeyword. - We bind our oscillator and volume controller to the audio context.
- We connect our oscillators and volume controller to our sound system.
- Set our frequency type and value (tuning)
- Start our oscillator — The
startmethod of theOscillatorNodeinterface specifies the exact time to start playing the tone.
Big potential, room to grow
Of course, with all great things, there’s always room to grow and improve. Here’s some healthy feedback from much smarter people than I.
Making music with the browser

Wrap up
If you’re unsure about the use cases for such API — think about all the music music composition software out there which are desktop only. Converting those desktop apps to web apps would be a very workable business idea.
Why is web better in this case? Well, for a starter — saving and closing your workspace and continuing from another workspace. Musicians travel a lot, this approach would benefit artists by a huge margin.
Another example would be enhancing our user experience with sound. (Careful not to over-do this!)
New solutions and better experience for less fortunate/blind people who use screen readers for websites. Accessibility.


If you’re interested in staying up to date, the Web Audio Conf is an excellent event to take part in.


web-audio-resources - :musical_keyboard: A list of curated web audio resourcesgithub.com
Thanks for reading, stay awesome! ❤
You can only become a great developer by putting the effort in. Imagine for a moment — You can’t become fit physically…medium.freecodecamp.org
Separating your frontend and backend has many advantages:medium.freecodecamp.org
Due to high demand I’m extending the list of fun apps to build. 😁medium.freecodecamp.org
✉️ Subscribe to CodeBurst’s once-weekly Email Blast, 🐦 Follow CodeBurst on Twitter, view 🗺️ The 2018 Web Developer Roadmap, and 🕸️ Learn Full Stack Web Development.
