Play live video라이브 비디오 재생:
Code Block |
---|
sendMessage({ type: 'init', mode: 'live', origin: 'SERVER1/DeviceIpint.1/SourceEndpoint.video:0:0'}); |
Go to the archive mode아카이브 모드로 이동:
Code Block |
---|
sendMessage({type: 'archive'}) |
Go to the live mode라이브 모드로 이동:
Code Block |
---|
sendMessage({type: 'live'}) |
Start the playback of archive video아카이브 비디오 재생 시작:
Code Block |
---|
sendMessage({type: 'play'}) |
Stop the video비디오 중지:
Code Block |
---|
sendMessage({type: 'stop'}) |
Go to a certain time in archive mode아카이브 모드에서 특정 시간으로 이동:
Code Block |
---|
sendMessage({type: 'setTime', time: new Date("2019-07-25 09:00:00")}); |
Note |
---|
|
The date should be in 날짜는 ISO 8601 format형식이어야 합니다. |