cycle-audio-graph
Audio graph driver for Cycle.js based on virtual-audio-graph.
Check out Awesome Cycle.js for more Cycle.js resources.
Installation
npm i -S cycle-audio-graph
Usage
makeAudioGraphDriver
The default export of cycle-audio-graph
is makeAudioGraphDriver
which takes an optional configuration object with two optional key-value pairs:
const audioContext = // if no configuration object is provided the defaults// detailed below will be used
Very Basic Example
const audioContext = const main = { // ... example$ could be some sort of user input graph$ = example$ return audioGraph: graph$ // ... etc. } const drivers = audioGraph: // ... etc.
virtual-audio-graph
For more info on the graph
objects in the graph$
check out the documentation for virtual-audio-graph.