Go to documentation repository
Connect(BSTR ip, BSTR login, BSTR password, BSTR arch_password, long param, long port) set up a connection to the Server/Video Gate/Backup Archive.
BSTR arch_password – password to access the archive (i.e. admin password, can be blank);
2 – videogate;
if 0, 1 or 2 are passed, the connection is established with port 900, 901 or 902 correspondingly;
if 100 is passed, the connection is with port 10504;
if any other value passed, the connection is with port number "port + 20000". For example, if port=900, the connection is established with server port 20900.
The connection to Server is set up asynchronously.
Important!
If login and password are not specified at Connect() method call, all cameras are viewable in the control. It is to be considered when developing third-party application if access privileges are relevant.
ShowCam(long cam_id, long compress, long show) shows/hides camera on the monitor.
DoReactMonitor(BSTR react_string) – control over the monitor/cameras
How to create react_string:
react_string = "MONITOR||ARCH_FRAME_TIME|cam<3>,date<dd-mm-yy>,time<hh:mm:ss>"; CamMonitor1->DoReactMonitor(react_string);
The result of calling the function with the parameter: camera 3 will be in the archive mode and the archive will be positioned to date «dd-mm-yy» and time «hh:mm:ss» (date and time are to be set in this format only).
The mode parameter takes the following values:
0 – video gate if it's specified (otherwise, video server).
1 – video server.
2 – long-time archive.
“MONITOR|<id ignored>|ARCH_FRAME_TIME|...”
Note:
Positioning accuracy can be specified in milliseconds, for instance:
DoReactMonitor(“MONITOR||ARCH_FRAME_TIME|cam<3>,date<02-10 05>,time<12:12:22.345>
Example. Show 2nd stream from camera 14 on Monitor 1:
"MONITOR|1|ADD_CAM|cam<14>,cam_id<14>,compress<1>,stream_id<14.2>"
Exapmle. Set fps = 1 when viewing archive from Camera 11
"MONITOR||CAM_PARAMS|cam<11>;arch_fps<1>"
RemoveAllCams() : long – remove all cameras from the monitor
IsConnected() : boolean – method shows if the Video server is connected or disconnected
GetCurIp() : BSTR – returns the IP address of Server specified when calling Connect
SendRawMessage(BSTR msg) – sends the command to be executed to Video server
How to call a function:
m_Cam.SendRawMessage("CAM|1|REC");
m_Cam.SendRawMessage("CAM|1|REC_STOP");
m_Cam.SendRawMessage("CAM|1|ARM");
m_Cam.SendRawMessage("CAM|1|DISARM");
Disconnect() – disconnect from the Video server.
SetCallBackOptions(int cam_id, int options) – sets parameters of getting video from camera.
Note
The options parameter is created the same as parameters of the CamMonitor.ocx component – see CamMonitor.ocx parameters.
SetParam(BSTR param_name, BSTR param_value) – sets the number of camera windows in CamMonitor.
How to call a function:
m_cam.SetParam("monitor_ch", m_NH); m_cam.SetParam("monitor_cw", m_NW);