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

    Interface AudioEffectState

    Definition of an audio effect.

    interface AudioEffectState {
        attrs?: Record<string, any>;
        audioParams?: AudioEffectParamType[];
        connections?: AudioEffectConnectionDef[];
        effectType: string;
        id: string;
    }

    Implemented by

    Index

    Properties

    attrs?: Record<string, any>

    Arbitrary attributes which can be used to describe audio effect.

    audioParams?: AudioEffectParamType[]

    Audio effect params

    connections?: AudioEffectConnectionDef[]

    Connections to other OmpAudioNodeDef's

    effectType: string

    Effect type as used in EffectsRegistry. There are no limitations to effect types but they need to be dynamically added to EffectsRegistry.

    id: string