onvif
    Preparing search index...

    Interface Imaging

    Imaging service

      const is = await cam.imaging.getImagingSettings();
    is.brightness = 70;
    await cam.imaging.setImagingSettings({
    imagingSettings: is,
    forcePersistence: true,
    });
    interface Imaging {
        onvif: Onvif;
        service: keyof OnvifServices;
        xmlns: string;
        getCurrentPreset(
            options?: GetCurrentPresetExtended,
        ): Promise<ImagingPreset>;
        getImagingSettings(
            options?: GetImagingSettingsExtended,
        ): Promise<ImagingSettings20>;
        getMoveOptions(options?: GetMoveOptionsExtended): Promise<MoveOptions20>;
        getOptions(options?: GetOptionsExtended): Promise<ImagingOptions20>;
        getPresets(options?: GetPresetsExtended): Promise<ImagingPreset[]>;
        getServiceCapabilities(): Promise<Capabilities>;
        getStatus(options?: GetStatusExtended): Promise<ImagingStatus20>;
        move(options: MoveExtended): Promise<void>;
        request<T = any>(
            body: Record<string, any>,
            options?: LineraseOptions,
        ): Promise<T>;
        setCurrentPreset(options: SetCurrentPresetExtended): Promise<void>;
        setImagingSettings(options: SetImagingSettingsExtended): Promise<void>;
        stop(options?: StopExtended): Promise<void>;
    }

    Hierarchy (View Summary)

    Index
    onvif: Onvif
    service: keyof OnvifServices
    xmlns: string
    • Stop ongoing focus movement for the requested video source.

      Parameters

      Returns Promise<void>