AXIS 200+ Users Manual Appendix G: CRON Script Command Reference
103
buffer_init
The buffer_init command initiates image buffers. This is needed in
order to store images using the buffer_start and buffer_stop
commands.
Syntax
buffer_init [1,[IMAGE],[SIZE][:1,[IMAGE],[SIZE]]];
Options
1 Refers to the camera number, which is always 1 for the AXIS
200+.
[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.
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
1 =
halfsize.jpg
2 = fullsize.jpg
3 = hugesize.jpg
# At startup, this command will initiate a
# buffer with 25 fullsize.jpg images and 10
# hugesize.jpg images.
* * * * * BOOT:
buffer_init 1,2,25:1,3,10;
%
# This command will clear the buffer every Sunday.
0 0 * * 0 * :
buffer_init;
%