onvif
    Preparing search index...

    Interface OnvifOptions

    Cam constructor options

    interface OnvifOptions {
        agent?: boolean | Agent | Agent;
        autoConnect?: boolean;
        hostname: string;
        password?: string;
        path?: string;
        port?: number;
        preserveAddress?: boolean;
        secureOptions?: SecureContextOptions;
        timeout?: number;
        urn?: string;
        username?: string;
        useSecure?: boolean;
        useWSSecurity?: boolean;
    }
    Index
    agent?: boolean | Agent | Agent

    Supports things like https://www.npmjs.com/package/proxy-agent which provide SOCKS5 and other connections.

    autoConnect?: boolean

    Set false if the camera should not connect automatically, defaults false.

    hostname: string
    password?: string
    path?: string
    port?: number
    preserveAddress?: boolean

    Force using hostname and port from constructor for the services (ex.: for proxying), defaults to false.

    secureOptions?: SecureContextOptions

    Set options for https like ca, cert, ciphers, rejectUnauthorized, secureOptions, secureProtocol, etc.

    timeout?: number
    urn?: string
    username?: string
    useSecure?: boolean

    Set true if using https protocol, defaults to false.

    useWSSecurity?: boolean

    Use WS-Security SOAP headers