Taos API Reference
    Preparing search index...

    Interface AudioEffect

    An insertable audio effect: a self-contained sub-graph with a single input and output. Connect a source into input and route output onward. AudioBus chains these between its gain and its parent.

    interface AudioEffect {
        input: AudioNode;
        output: AudioNode;
        dispose(): void;
    }
    Index

    Properties

    Methods

    Properties

    input: AudioNode

    Node that incoming signal connects to.

    output: AudioNode

    Node that carries the processed signal onward.

    Methods