Could we use zmtrack.pl to track multi camera?
I used zmtrack.pl to trigger a scrip *.pl when has alarm
perl zmtrack.pl -m 2
Now I want use zmtrack for multi camera, how can we do this task?
please help me !! thanks
zmtrack.pl
-
- Posts: 5111
- Joined: Wed Jun 08, 2005 8:07 pm
- Location: Midlands UK
cdbao, i dont understand the question mate
James Wilson
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
Okey!! its mean :
I want to detect a camera when it has motion, it will be alarm through Telephone or action my Scripts..
and I has done this task by a command : zmtrack.pl -m id_camera
in zmtrack.pl file I was added this line
I want to run this task for 8 camera , I dont think I must run 8 command : zmtrack.pl -m id_camera[1..8]
Please show me some solution for this.
Thanks and Regard.
I want to detect a camera when it has motion, it will be alarm through Telephone or action my Scripts..
and I has done this task by a command : zmtrack.pl -m id_camera
in zmtrack.pl file I was added this line
It work perfect for ONE Camera.if ( DBG_LEVEL > 0 && $alarmed )
{
print( "Left alarm state bleh bleh\n" );
$alarmed = undef;
system("php /usr/alarm_camera.php");
}
if ( ($monitor->{ReturnLocation} >= 0) && ($last_alarm > 0) && ((time()-$last_alarm) > $monitor->{ReturnDelay}) )
{
Debug( "Returning to location ".$monitor->{ReturnLocation}."\n" );
Suspend( $monitor );
Return( $monitor );
Resume( $monitor );
$last_alarm = 0;
}
I want to run this task for 8 camera , I dont think I must run 8 command : zmtrack.pl -m id_camera[1..8]
Please show me some solution for this.
Thanks and Regard.