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

    Interface OmpAudioEffectDef

    Definition of an audio effect.

    interface OmpAudioEffectDef {
        attrs?: Record<string, any>;
        audioParams?: OmpAudioEffectParamType[];
        connections?: OmpAudioEffectConnectionDef[];
        effectType: string;
        id: string;
    }

    Implemented by

    Index

    Properties

    attrs?: Record<string, any>

    Arbitrary attributes which can be used to describe audio effect.

    audioParams?: OmpAudioEffectParamType[]

    Audio effect params

    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