^^^^^^
True that can effect some things, though I havent noticed it using a Dahua PoE NVR... is that a BI thing?
No the camera setting...it happened to all 5 cameras I bought(empiretech)...it's a serious bug
^^^^^^
True that can effect some things, though I havent noticed it using a Dahua PoE NVR... is that a BI thing?
Thanks for the advice, I checked the settings but its already on 24hWhen I had day&night profile not saving issue it turned out to be system time setting set to 12hr. Wittaj told me to change to 24hr format and profiles/schedules worked properly.
Where is that utility ? I don't think I use that. I use the camera over Blue Iris so not with an specific NVR maybe that's also an imported information ? As far as I know, I don't work with API's in my case either, I think.BTW: If you use day/night utility with the new Web GUI, you also must perform the work around dance of selecting "self-adaptive" profile in the GUI before leaving the page. Doing so, enables the API calls that day/night uses to set profile. Otherwise, the commands from day/night utility are ignored. The camera will be in the wrong mode, but be responsive to day/night commands. Finally let day/night to activate the desired day or night profile.
System version
V3.142.15OG003.0.R, build date: 2024-12-21
Web version V5.01.0.2162731
Algorithm version V4.11.05.0
Security baseline version V2.4
H5Player version V3.01.1
Ok, so thats "as short as possible" so 1/333 as longest - right?
and what do u use for night conditions?
Is there a reason (or bug) for greyed-out ‘mode’ for “day/night switch.” ? Do you also use the “customized scene”?
You do not want to use 1/333 shutter LOL
PS: I'm not used to shutter speeds being given in milliseconds (ms) at all. It confuses me.
What's more, it's not treated consistently in the camera configuration either, with different settings sometimes requiring ms and sometimes 1/x values.
Shutter is 1/x in the selection list, but ms in custom mode.
Is there any reason for this? Except that it's easier to work with numbers when you can specify a value range in ms. But converting it in my head is a big “stopper.”
http://admin:[email protected]/cgi-bin/ptz.cgi?action=getStatus&channel=1
Check the API to see if there are any GET statements that will display the needed info.
As an example, for a PTZ, the following can be used to display 'status' of certain camera parameters. This most likely will not apply to other non PTZ Dahua cams.
Code:http://admin:[email protected]/cgi-bin/ptz.cgi?action=getStatus&channel=1
table.VideoInOptions[0].ExposureValue1=0
table.VideoInOptions[0].ExposureValue2=8
....
table.VideoInOptions[0].ExposureIris=50
table.VideoInOptions[0].ExposureMode=4
table.VideoInOptions[0].ExposureSpeed=0
....
table.VideoInOptions[0].NightOptions.ExposureValue1=0
table.VideoInOptions[0].NightOptions.ExposureValue2=12
....
table.VideoInOptions[0].NormalOptions.ExposureValue1=0
table.VideoInOptions[0].NormalOptions.ExposureValue2=40
....