Go to documentation repository
...
Command – command description | Parameters | Description |
"SETUP" – settings of the voice notification service. | card<> | Name of sound device. Note. Card name is to be correspond to name which is specified in settings of sound card of the Voice notification service. |
level<> | Level of signal. Value of parameter is from 0 to 15. On default it is 8. | |
channel<> | Set of sound channels. Available values of parameter: 0 – no sound channel; 1 – left playback channel; 2 – right playback channel; 3 – left and right playback channels (both channels). | |
flags<> | Flags | |
ip<> | IP-address of network device. | |
name<> | Object name. | |
pass<> | Password. | |
user<> | User name. | |
"PLAY" – play audio file. | file<> | Full path to the audio file in .wav format (indicating the name of the file being played. For example: C:\Program Files (x86)\IntellectAxxon PSIM\Wav\cam_alarm_1.wav). Note. If only file name is specified then path to it will be taken from registry in «HKEY_LOCAL_MACHINE\SOFTWARE\ITVAxxonSoft\Intellect» Axxon PSIM» section (HKEY_LOCAL_MACHINE \Software\Wow6432Node\ITVAxxonSoft\Intellect Axxon PSIM for 64-bits system), in value of the «InstallPath» parameter. In this parameter it is possible to play several audio files using the «+» operation. |
"STOP" – stop playing audio file. | - | - |
...
Play the audio file when video camera stops recording:
Code Block |
---|
OnEvent("CAM",N,"REC_STOP") { DoReact("VNS","1","PLAY","file<C:\Program Files (x86)\IntellectAxxon PSIM\Wav\cam_alarm_"+N+".wav>"); } |
Stop playing the audio file when the camera starts recording:
Code Block |
---|
OnEvent("CAM",N,"REC") { DoReact("VNS","1","STOP"); } |
When a predetermined time zone starts, change the volume control value to a lower one, and then after it ends, set the average volume control value:
Code Block |
---|
OnEvent("TIME_ZONE","1","ACTIVATE") { DoReact("VNS","1","SETUP","level<2>"); } OnEvent("TIME_ZONE","1","DEACTIVATE") { DoReact("VNS","1","SETUP","level<8>"); } |
...