Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Appendix 1. Priorities of the start and stop recording commands  The Script object. Programming using the JScript language Next page


The values of the param_id and param_value parameters, required for the SET_IPINT_PARAM reaction, can be individual both for each of integrated IP cameras and for their firmwares.

The values of the param_id and param_value are defined as follows:

  1. Open the directory with installed DriverPack, by default, C:\Program Files\Common Files\AxxonSoft\Ipint.DriverPack\3.0.0\.
  2. Using any word processor, open a file in this directory with the Ipint.<Name of camera driver>.rep name, for example, Ipint.SonyIpela.rep.

    Note

    In most cases, the name of the driver is the same as the name of the manufacturer of the IP device. Contact AxxonSoft support to check the name of the driver for the required manufacturer.
  3. In the file, find the name of the required model, for example, SNC-DH120T.
  4. There is the <videoSourceRef> tag within the <device> tag that contains the description of the required model like in the <model> tag. You must find one more occurrence of the id value of this parameter in the file (in this example this is video_source_dh160 value) in the videoSource tag.
  5. The parameters of IP device and their possible values are described in the <property> tags. The description of possible values depends on their type.

In this example the param_id="daynight" parameter can be used to switch the Day/Night mode on the camera. In this case the possible values of the param_value parameter are: auto, on, off, timer or sensor.

Example

Example of using the SET_IPINT_PARAM reaction:

  1. For the Camera object:
    DoReact("CAM", "1","SET_IPINT_PARAM","param_id<daynight>,param_value<on>");
  2. For the Video capture device object:
    DoReact("GRABBER", "1","SET_IPINT_PARAM","param_id<daynight>,param_value<on>,cam_id<1>");

As a result of reactions execution the value of the “daynight” parameter is “on” for Camera 1.

To enable the SET_IPINT_PARAM reaction, the multistream mode must be enabled in Axxon PSIM (see Configuration of multistream video). Keep in mind that if only one stream is integrated for the camera, then there will be no video in the multistream mode.

You can find out the number of integrated streams in the list of IP devices integrated with Axxon PSIM (see Documentation Drivers Pack).

If this way can’t be used for any reason, then find out the number of integrated streams as follows:

  1. Repeat steps 13 of the previous algorithm.
  2. The required model is described within the <device> tag, integrated video streams are described in the <videoStreamingRef> tags. There must be more than one stream.
  • No labels