Interface CameraStreamingOptionsBase

interface CameraStreamingOptionsBase {
    audio?: AudioStreamingOptions;
    disable_audio_proxy?: boolean;
    proxy?: boolean;
    video: VideoStreamingOptions;
}

Properties

"audio" is optional and only needs to be declared if audio streaming is supported. If defined the Microphone service will be added and Microphone volume control will be made available. If not defined hap-nodejs will expose a default codec in order for the video stream to work

disable_audio_proxy?: boolean
proxy?: boolean