@byomakase/omakase-player
    Preparing search index...

    Interface OmpAudioNode

    Web Audio API AudioNode wrapper

    interface OmpAudioNode {
        get attrs(): Map<string, any>;
        get audioNode(): AudioNode;
        get connections(): OmpAudioNodeConnection[];
        get id(): string;
        get type(): OmpAudioNodeType;
        connectNode(
            destinationNode: OmpAudioNode,
            output?: number,
            input?: number,
        ): OmpAudioNode;
        connectParam(
            destinationNode: OmpAudioNode,
            audioParamName: string,
            output?: number,
        ): void;
        destroy(): void;
        toDef(): OmpAudioNodeDef;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Accessors

    Methods