User Manual

Table Of Contents
AXIS 240 Users Manual Appendix H: CRON Script Command Reference
109
IMAGE
Specifies the image type 1-3, where:
SIZE
Specifies the maximum number of images that can be stored in
the buffer. Valid range is 0-255.
To initiate several buffers, you can stack multiple statements
separated by colon.
Notes:
To clear the image buffer, you simply do not specify any
arguments.
To initiate several buffers, you can stack multiple statements
separated by colon.
Example 1
Example 2
buffer_start
The buffer_start command stores snapshots in a specific image buffer.
Before the command can be used, the buffer facility must be initiated
using the buffer_init command.
1 =
halfsize.jpg
2 = fullsize.jpg
3 = hugesize.jpg
# At startup, this command will initiate one
# buffer for camera 1 with 25 fullsize.jpg images
# and one buffer for camera 2 with 5 hugesize.jpg
# images.
* * * * * BOOT:
buffer_init 1,2,25:2,3,5;
%
# This command will clear the buffer every Sunday.
0 0 * * 0 * :
buffer_init;
%