onvif
    Preparing search index...

    Interface EQPreset

    interface EQPreset {
        frequencyDecibelPair?: FrequencyDecibelPair[];
        isDefault: boolean;
        isFrequencyDecibelEditable: boolean;
        name: string;
        scheduleToken?: string;
        token: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    frequencyDecibelPair?: FrequencyDecibelPair[]

    List of frequency decibel pairs, each defined by a center frequency and its corresponding decibel value.

    isDefault: boolean

    This indicates whether the EQ preset is designated as the default. When the scheduler is inactive, this preset will be applied. Only one preset can be set as the default among the EQ presets linked to an audio output. If all presets have isDefault set to false, the device may automatically select one preset as the default.

    isFrequencyDecibelEditable: boolean

    Indicates whether the device allows changing the decibel level for frequencies. (Readonly)

    name: string

    Preset name. (Readonly)

    scheduleToken?: string

    Optional schedule token (if supported).

    token: string

    Unique identifier for the preset.