Go to documentation repository
Page History
...
Select the video camera and its mode.
Code Block type InitMessage = {type: 'init', mode: 'live' | 'archive', origin: string, time: Date, options?: Options}
The options object allows you to control the archive panel − to — hide it or to show it.
Code Block type Options = {archivePane?: boolean}
The origin object corresponds to the VIDEOSOURCEID identifier (see Get list of video cameras and information about them).
Select a different video camera in the video component. Usually used after the init command to change a video camera.
Code Block type RelnitMessage = {type: 'relnit', mode: 'live' | 'archive', origin: string, time: Date, options?: Options}
Switch between the archive and live modevideo.
Code Block type SwitchMode = {type: 'live' | 'archive'}
Play Start and stop the video in playback from the archive mode.
Code Block type PlaybackCommand = {type: 'play' | 'stop'}
Go to a certain time in the archive mode.
Code Block type SetTimeCommand = {type: 'setTime', time: Date}
Change a Focus on the selected camera.
Code Block type SetCameraCommand = {type: 'setCamera', origin: string}
Overview
Content Tools