-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json.example
More file actions
executable file
·40 lines (38 loc) · 1.04 KB
/
config.json.example
File metadata and controls
executable file
·40 lines (38 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"nvr_address": "https://127.0.0.1",
"username": "api-user",
"password": "changeme",
"reauth_seconds": 3600,
"auto_discover": true,
"rediscovery_interval_seconds": 600,
"log_level": "info",
"defaults": {
"dwell_seconds": 30,
"motion_hold_seconds": 15,
"max_tracking_wait": 300,
"manual_control_hold_seconds": 120,
"_note_ptz_settle": "ptz_settle_seconds is auto-clamped to at most dwell_seconds/2 at startup",
"ptz_settle_seconds": 10,
"home_on_shutdown": false,
"home_between_cycles": false,
"schedule": null,
"dynamic_auto_tracking": false
},
"camera_overrides": {
"EXAMPLE_CAMERA_ID_HERE": {
"enabled": true,
"dwell_seconds": 45,
"motion_hold_seconds": 20,
"max_tracking_wait": 180,
"manual_control_hold_seconds": 60,
"preset_slots": [0, 1, 3],
"schedule": {
"start": "22:00",
"end": "06:00",
"days": ["mon", "tue", "wed", "thu", "fri"],
"home_on_pause": true
},
"dynamic_auto_tracking": true
}
}
}