Go to documentation repository
...
Command – command description | Parameters | Description |
"PLAY_WAV" – plays 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). |
"SETUP" – settings of audio player parameters. | board<> | Sound unit of archive player. |
flags<> | Flags. | |
h<> | Height of settings dialog (0 – 100). | |
name<> | Object name. | |
voice<> | Sound notification. | |
voice_board<> | Sound unit of notification. | |
w<> | Width of settings dialog (0 – 100). | |
x<> | Left top corner of settings dialog (0 – 100). | |
y<> | Left top corner of settings dialog (0 – 100). | |
| "STOP_WAV" – stops audio file. | - | - |
...
Play the audio file when the camera stops recording:
| Code Block |
|---|
OnEvent("CAM",N,"REC_STOP")
{
DoReact("PLAYER","1","PLAY_WAV","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("PLAYER","1","STOP_WAV");
} |