I have run into a problem (that has a partial solution) when I wanted to dump these events to mpg so they could be handed over as evidence.
The event lasted about 5 minutes, and although the subject never left the range of the camera during that time, ZM recorded over 300 seperate events.
Exporting all of these events to video seemed like a chore from the web GUI (would have to do them one at a time), so I used zmvideo.pl to do it for me. The events I needed to convert to mpg were events 628-884.
Code: Select all
for event in `seq 628 884` ; do /usr/lib/zm/bin/zmvideo.pl -e $event; done
Code: Select all
find /usr/lib/zm/html/events/1 -name *.mpg -exec mv {} /tmp/MPEGs \;
So...this was a lot of work to create a single video of several events...it sure would be nice to have an option in the video creation GUI to checkbox several events and create either seperate or a single large video of them.
P.S. The partial solution I spoke of, was I increased my "post event image buffer" size, which, according to the docs, should help reduce the problem of lots of small events happening, and instead create longer events when there is sporadic short movements.[/code]