다음 유형의 명령을 사용할 수 있습니다.
비디오 카메라와 해당 모드를 선택합니다.
type InitMessage = {type: 'init', mode: 'live' | 'archive', origin: string, time: Date, options?: Options}
옵션 개체를 사용하면 아카이브 패널을 제어하여 숨기거나 표시할 수 있습니다 .
type Options = {archivePane?: boolean}
원본 객체는 VIDEOSOURCEID 식별자에 해당합니다 (Get list of video sources (cameras) 참고).
아카이브와 라이브 모드 사이를 전환합니다
type SwitchMode = {type: 'live' | 'archive'}
아카이 모드에서 동영상을 재생하고 중지합니다 .
type PlaybackCommand = {type: 'play' | 'stop'}
아카이브 모드에서 특정 시간으로 이동합니다 .
type SetTimeCommand = {type: 'setTime', time: Date}
선택한 카메라를 변경합니다 .
type SetCameraCommand = {type: 'setCamera', origin: string}