Home

Awesome

<img src="https://andromeda.netlify.com/assets/logo.svg" />

Build Status

Andromeda is a pluggable digital audio workstation built on open web technologies

Check it out here

Plugin API

NB this API should be considered pre-alpha

Effect plugin API

EffectPlugin should be a constructor or factory function which is newed up with an object with the following props:

new EffectPlugin({ audioContext, bpm });

effectPlugin instances should then expose the following API:

Instrument plugin API

InstrumentPlugin should be a constructor or factory function which is newed up with an object with the following props:

new InstrumentPlugin({ audioContext, bpm });

instrumentPlugin instances should then expose the following API:

Note object specification

Instrument plugins receive note objects which have the following properties:

More info

Built using virtual-audio-graph