0.2.3 • Published 2 years ago

wam-extensions v0.2.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

wam-extensions

Extensions to the Web Audio Module API

What?

WAM extensions are optional additions to the webaudiomodule API that extend the interaction between WAM plugin and host.

How?

WAM extensions are added to the browser context as window.WAMExtensions. WAM plugins can check for the existence of a specific extension, and then choose to load the special functionality or operate without the extension.

Why extensions? Why not build into core?

The idea behind WAM extensions came from documenting my pain points using AudioUnits in iOS to make music, and from looking at where DAWs have chosen to more tightly integrate their own plugins than what they are able to do with existing plugin technologies like VST or AU.

The problems solved by these extensions are not needed by 90% of WAM extensions. But where the extensions are used, they significantly improve the user experience. By keeping these extensions external, we can keep core focused on pluggable audio modules, and keep each extension focused on solving only the problem it was built to solve.

In most cases, if a host does not implement a WAM extension, the plugin should be able to still function. Some plugins require certain WAM extensions in order to function, but hosts are free to only implement the extensions necessary to provide the desired user experience.

Current extensions

Notes

Notes allows an audio plugin to publish a list of notes and names that it responds to. The host passes this note list to the sequencer plugins that are connected to the audio plugin.

For example, here is the pianoroll WAM without the notes extension:

And here is the pianoroll WAM with the notes extension, sending notes to the drumsampler WAM:

Clips

Clips provide a way for the host to organize and sequence a list of separate sequencer phrases, without any knowledge of the sequencer internals. The user is able to perform or arrange sequencer clips, but the sequencer is a pluggable WAM. For example, the sequencer may be a pianoroll where each clip is specific notes on the staff, or it may be a step sequencer, or it could be a random generator with clip-specific variables like seed and length.

ModulationTarget

This extension allows a WAM to directly modulate another WAM's parameter. This lets us build various automation styles as WAM plugins, and again push the responsibility out of the host. For example, a WAM plugin implementing this extension could implement an LFO or a step modulator, or more traditional style point-to-point automation.

Video

This extension allows WAMs to generate or process video. When instantiating, video WAMs register a delegate that gets passed a WebGLRenderingContext to initialize, and a second function that renders a new frame for the WebGL program. Video WAMs are also Audio WAMs, so they can analyze audio or MIDI to generate visuals or process both audio and video at the same time.

Future Extensions

An 'asset management' extension is required. It would let hosts organize, move, collect assets for a project. Plugins will defer to the host to load assets. Plugins may also create new assets and defer to the host to save them - allowing for workflows like re-sampling or generating audio and then importing into another plugin without leaving the project.

0.2.3

2 years ago

0.2.1

2 years ago

0.2.2

2 years ago

0.2.0

2 years ago

0.1.11

3 years ago

0.1.10

3 years ago

0.1.8

3 years ago

0.1.9

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.5

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago