Hi
@TheLaw - It's possible to tweak
AD110/AD410 IR light settings via the API. In the Amcrest CGI API manual, refer to section 5.1.5 Lighting. To examine the current settings:
<ip_addr>/cgi-bin/configManager.cgi?action=getConfig&name=Lighting
returns for the normal (general) [0][0] profile:
table.Lighting[0][0].Correction=50
table.Lighting[0][0].MiddleLight[0].Angle=50
table.Lighting[0][0].MiddleLight[0].Light=20
table.Lighting[0][0].Mode=Auto
table.Lighting[0][0].Sensitive=3
and also:
table.Lighting[0][1]. <same as above, but refers to day profile >
table.Lighting[0][2]. <same as above, but refers to night profile>
table.Lighting[0][3]. <same as above, but [3] not documented>
Note: it's doubtful the AD410 even supports day/night profiles so the Lighting configs other than normal can probably be ignored. The IR luminance is the
MiddleLight.Light value. The default luminance is a low 20% (range is 0-100%) but ONLY in manual mode. In Auto (SmartLight) mode, it apparently will dynamically adjust the intensity as it sees fit.
The Angle and Sensitive values aren't clearly described as to their purpose, but I believe these values are used in the PIR motion detection algorithm. The Correction value is only used for a special ZoomPrio mode that isn't supported by the AD410.
You will first need to change the IR Mode to manual, which can be done via the API:
<ip_address>/cgi-bin/configManager.cgi?action=setConfig&Lighting[0][0].Mode=Manual
Then you can adjust the intensity value (from 0 to 100) via:
<ip_address>/cgi bin/configManager.cgi?action=setConfig&Lighting[0][0].MiddleLight[0].Light=25
Note:
Blue Iris users have reported that the IR mode can be changed back to Auto when RTSP streaming is initiated.