-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathconfig-template.json
141 lines (141 loc) · 4.12 KB
/
config-template.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"amzn": {
"clientId": "REPLACE",
"clientSecret": "REPLACE",
"grantCode": "REPLACE",
"lwaHost": "api.amazon.com",
"lwaPath": "/auth/o2/token",
"eventGatewayHost": "api.amazonalexa.com",
"eventGatewayPath": "/v3/events",
"preemptiveRefreshTime": 300
},
"mongodb": {
"mongodbUrl": "REPLACE",
"mongodbCollection": "camera_uploads"
},
"log": {
"level": "info",
"silent": false,
"consoleLog": true,
"baseName": "REPLACE"
},
"recordings": {
"recordingsBasePath": "REPLACE",
"videoUriBase": "REPLACE",
"checkRecordingsInterval": 5000
},
"cameras":[
{
"endpointId": "1",
"manufacturerName": "Axis",
"manufacturerId": "axis-ACCC8E5E7513",
"modelName": "P1425-LE",
"friendlyName": "Front Porch Camera",
"description": "Front Porch Camera",
"resolutions": [
{"width": 1280, "height": 720}
],
"videoCodecs": ["H264"],
"audioCodecs": ["NONE"],
"uri": "rtsp://cam.lsacam.com:443/proxyStream-1"
},
{
"endpointId": "2",
"manufacturerName": "Axis",
"manufacturerId": "",
"modelName": "P1425-LE",
"friendlyName": "East Side Camera",
"description": "East Side Camera",
"resolutions": [
{"width": 720, "height": 1280}
],
"videoCodecs": ["H264"],
"audioCodecs": ["NONE"],
"uri": "rtsp://cam.lsacam.com:443/proxyStream-2"
},
{
"endpointId": "3",
"manufacturerName": "Axis",
"manufacturerId": "",
"modelName": "P1435-LE",
"friendlyName": "Back Yard Camera",
"description": "Back Yard Camera",
"resolutions": [
{"width": 1280, "height": 720}
],
"videoCodecs": ["H264"],
"audioCodecs": ["NONE"],
"uri": "rtsp://cam.lsacam.com:443/proxyStream-3"
},
{
"endpointId": "4",
"manufacturerName": "Axis",
"manufacturerId": "",
"modelName": "P1425-LE",
"friendlyName": "Back Garage Camera",
"description": "Back Garage Camera",
"resolutions": [
{"width": 1280, "height": 720}
],
"videoCodecs": ["H264"],
"audioCodecs": ["NONE"],
"uri": "rtsp://cam.lsacam.com:443/proxyStream-4"
},
{
"endpointId": "5",
"manufacturerName": "Axis",
"manufacturerId": "axis-ACCC8E6E3530",
"modelName": "P1425-LE",
"friendlyName": "Playroom Door Camera",
"description": "Playroom Door Camera",
"resolutions": [
{"width": 1280, "height": 720}
],
"videoCodecs": ["H264"],
"audioCodecs": ["NONE"],
"uri": "rtsp://cam.lsacam.com:443/proxyStream-5"
},
{
"endpointId": "6",
"manufacturerName": "Axis",
"manufacturerId": "",
"modelName": "P1425-LE",
"friendlyName": "Front Gate Camera",
"description": "Front Gate Camera",
"resolutions": [
{"width": 720, "height": 1280}
],
"videoCodecs": ["H264"],
"audioCodecs": ["NONE"],
"uri": "rtsp://cam.lsacam.com:443/proxyStream-6"
},
{
"endpointId": "7",
"manufacturerName": "Axis",
"manufacturerId": "",
"modelName": "P1435-LE",
"friendlyName": "Back Porch Camera",
"description": "Back Porch Camera",
"resolutions": [
{"width": 1280, "height": 720}
],
"videoCodecs": ["H264"],
"audioCodecs": ["NONE"],
"uri": "rtsp://cam.lsacam.com:443/proxyStream-7"
},
{
"endpointId": "8",
"manufacturerName": "Wyze",
"manufacturerId": "",
"modelName": "Wyze Cam v2",
"friendlyName": "Crawl Space Camera",
"description": "Crawl Space Camera",
"resolutions": [
{"width": 1280, "height": 720}
],
"videoCodecs": ["H264"],
"audioCodecs": ["G711"],
"uri": "rtsp://cam.lsacam.com:443/proxyStream-8"
}
]
}