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

    Interface OmpAudioEffectDef

    Audio effect definition

    interface OmpAudioEffectDef {
        attrs?: Record<string, any>;
        audioNodeOptions?: any;
        audioParams?: OmpAudioNodeParamType[];
        connections?: OmpAudioNodeConnectionDef[];
        id: string;
        type: OmpAudioNodeType;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    attrs?: Record<string, any>

    Arbitrary attributes which can be used to describe audio node.

    audioNodeOptions?: any

    Used only during AudioNode creation. This options will be passed in AudioNode constructor

    audioParams?: OmpAudioNodeParamType[]

    Audio node params

    Connections to other OmpAudioNodeDef's

    id: string