AudioGraphSettings interface
Signature:
export interface AudioGraphSettings<Pins extends string = "audio"> extends ProcessorNodeSettings<AudioGraphNode<Pins>>
Extends: ProcessorNodeSettings<AudioGraphNode<Pins>>
Properties
| Property | Type | Description |
|---|---|---|
(graph: AudioGraphBuilder) ⇒ AudioNode | Record<string, AudioGraphOutputSpec> |
Build the processing graph and declare its output(s). Return a single node for one output (which inherits the source’s stream key), or a record of |
|
(measurement: AudioGraphMeasurement) ⇒ void |
(Optional) Called for every measurement an analysis tap (e.g. |
|
(update: { nodeIndex: number; params: Record<string, number>; transitionMs?: number; }) ⇒ void |
(Optional) Called with every runtime parameter update as the server applies it (the param echo) — relay these to your own UI clients to keep a multi-operator surface in sync without tracking state yourself. |
|
Pins[] |
(Optional) Multi-source mode: named input pins, one per graph source, in wire-source order — |