-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcameras.go
331 lines (262 loc) · 8.61 KB
/
cameras.go
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
package securityspy
import (
"context"
"fmt"
"image"
"image/jpeg"
"io"
"net/url"
"os"
"strconv"
"strings"
"time"
"golift.io/ffmpeg"
)
// All returns interfaces for every camera.
func (c *Cameras) All() []*Camera {
return c.cameras
}
// ByNum returns an interface for a single camera.
func (c *Cameras) ByNum(number int) *Camera {
for _, cam := range c.cameras {
if cam.Number == number {
return cam
}
}
return nil
}
// ByName returns an interface for a single camera, using the name.
func (c *Cameras) ByName(name string) *Camera {
for _, cam := range c.cameras {
if cam.Name == name {
return cam
}
}
// Try again, case-insensitive.
for _, cam := range c.cameras {
if strings.EqualFold(cam.Name, name) {
return cam
}
}
return nil
}
// StreamVideo streams a segment of video from a camera using FFMPEG.
// VidOps defines the video options for the video stream.
// Returns an io.ReadCloser with the video stream. Close() it when finished.
func (c *Camera) StreamVideo(ops *VidOps, length time.Duration, maxsize int64) (io.ReadCloser, error) {
ffmpg := ffmpeg.Get(&ffmpeg.Config{
FFMPEG: c.server.Encoder,
Time: int(length.Seconds()),
Audio: true, // Sure why not.
Size: maxsize, // max file size (always goes over). use 2000000 for 2.5MB
Copy: true, // Always copy securityspy RTSP urls.
})
params := c.makeRequestParams(ops)
if p := c.server.Auth(); p != "" {
params.Set("auth", p)
}
params.Set("codec", "h264")
// This is kinda crude, but will handle 99%.
url := strings.Replace(c.server.BaseURL(), "http", "rtsp", 1) + "++stream"
// RTSP doesn't rewally work with HTTPS, and FFMPEG doesn't care about the cert.
args, video, err := ffmpg.GetVideo(url+"?"+params.Encode(), c.Name)
if err != nil {
return nil, fmt.Errorf("%w: %s", err, strings.ReplaceAll(args, "\n", " "))
}
return video, nil
}
// SaveVideo saves a segment of video from a camera to a file using FFMPEG.
func (c *Camera) SaveVideo(ops *VidOps, length time.Duration, maxsize int64, outputFile string) error {
if _, err := os.Stat(outputFile); !os.IsNotExist(err) {
return ErrPathExists
}
ffmpg := ffmpeg.Get(&ffmpeg.Config{
FFMPEG: c.server.Encoder,
Time: int(length.Seconds()),
Audio: true,
Size: maxsize, // max file size (always goes over). use 2000000 for 2.5MB
Copy: true, // Always copy securityspy RTSP urls.
})
params := c.makeRequestParams(ops)
if p := c.server.Auth(); p != "" {
params.Set("auth", p)
}
params.Set("codec", "h264")
// This is kinda crude, but will handle 99%.
url := strings.Replace(c.server.BaseURL(), "http", "rtsp", 1) + "++stream"
_, out, err := ffmpg.SaveVideo(url+"?"+params.Encode(), outputFile, c.Name)
if err != nil {
return fmt.Errorf("%w: %s", err, strings.ReplaceAll(out, "\n", " "))
}
return nil
}
// StreamMJPG makes a web request to retrieve a motion JPEG stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamMJPG(ops *VidOps) (io.ReadCloser, error) {
resp, err := c.server.Get("++video", c.makeRequestParams(ops))
if err != nil {
return nil, fmt.Errorf("getting video: %w", err)
}
return resp.Body, nil
}
// StreamH264 makes a web request to retrieve an H264 stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamH264(ops *VidOps) (io.ReadCloser, error) {
resp, err := c.server.Get("++stream", c.makeRequestParams(ops))
if err != nil {
return nil, fmt.Errorf("getting stream: %w", err)
}
return resp.Body, nil
}
// StreamG711 makes a web request to retrieve an G711 audio stream.
// Returns an io.ReadCloser that will (hopefully) never end.
func (c *Camera) StreamG711() (io.ReadCloser, error) {
resp, err := c.server.Get("++audio", c.makeRequestParams(nil))
if err != nil {
return nil, fmt.Errorf("getting audio: %w", err)
}
return resp.Body, nil
}
// PostG711 makes a POST request to send audio to a camera with a speaker.
// Accepts an io.ReadCloser that will be closed. Probably an open file.
// This is untested. Report your success or failure!
func (c *Camera) PostG711(audio io.ReadCloser) ([]byte, error) {
if audio == nil {
return nil, nil
}
body, err := c.server.Post("++audio", c.makeRequestParams(nil), audio)
if err != nil {
return nil, fmt.Errorf("posting audio: %w", err)
}
return body, nil
}
// GetJPEG returns an images from a camera.
// VidOps defines the image size. ops.FPS is ignored.
func (c *Camera) GetJPEG(ops *VidOps) (image.Image, error) {
ops.FPS = -1 // not used for single image
ctx, cancel := context.WithTimeout(context.Background(), c.server.TimeoutDur())
defer cancel()
resp, err := c.server.GetContext(ctx, "++image", c.makeRequestParams(ops))
if err != nil {
return nil, fmt.Errorf("getting image: %w", err)
}
defer resp.Body.Close()
jpgImage, err := jpeg.Decode(resp.Body)
if err != nil {
return nil, fmt.Errorf("decoding jpeg: %w", err)
}
return jpgImage, nil
}
// SaveJPEG gets a picture from a camera and puts it in a file (path).
// The file will be overwritten if it exists.
// VidOps defines the image size. ops.FPS is ignored.
func (c *Camera) SaveJPEG(ops *VidOps, path string) error {
if _, err := os.Stat(path); !os.IsNotExist(err) {
return ErrPathExists
}
jpgImage, err := c.GetJPEG(ops)
if err != nil {
return fmt.Errorf("getting jpeg: %w", err)
}
oFile, err := os.Create(path)
if err != nil {
return fmt.Errorf("os.Create: %w", err)
}
defer oFile.Close()
err = jpeg.Encode(oFile, jpgImage, nil)
if err != nil {
return fmt.Errorf("encoding jpeg: %w", err)
}
return nil
}
// ToggleContinuous arms (true) or disarms (false) a camera's continuous capture mode.
func (c *Camera) ToggleContinuous(arm CameraArmMode) error {
params := make(url.Values)
params.Set("arm", string(arm))
if err := c.server.SimpleReq("++ssControlContinuous", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// ToggleMotion arms (true) or disarms (false) a camera's motion capture mode.
func (c *Camera) ToggleMotion(arm CameraArmMode) error {
params := make(url.Values)
params.Set("arm", string(arm))
if err := c.server.SimpleReq("++ssControlMotionCapture", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// ToggleActions arms (true) or disarms (false) a camera's actions.
func (c *Camera) ToggleActions(arm CameraArmMode) error {
params := make(url.Values)
params.Set("arm", string(arm))
if err := c.server.SimpleReq("++ssControlActions", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// TriggerMotion sets a camera as currently seeing motion.
// Other actions likely occur because of this!
func (c *Camera) TriggerMotion() error {
if err := c.server.SimpleReq("++triggermd", make(url.Values), c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// SetSchedule configures a camera mode's primary schedule.
// Get a list of schedules IDs you can use here from server.Info.Schedules.
// CameraModes are constants with names that start with CameraMode*.
func (c *Camera) SetSchedule(mode CameraMode, scheduleID int) error {
params := make(url.Values)
params.Set("mode", string(mode))
params.Set("id", strconv.Itoa(scheduleID))
if err := c.server.SimpleReq("++ssSetSchedule", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
// SetScheduleOverride temporarily overrides a camera mode's current schedule.
// Get a list of overrides IDs you can use here from server.Info.ScheduleOverrides.
// CameraModes are constants with names that start with CameraMode*.
func (c *Camera) SetScheduleOverride(mode CameraMode, overrideID int) error {
params := make(url.Values)
params.Set("mode", string(mode))
params.Set("id", strconv.Itoa(overrideID))
if err := c.server.SimpleReq("++ssSetOverride", params, c.Number); err != nil {
return fmt.Errorf("request failed: %w", err)
}
return nil
}
/* INTERFACE HELPER METHODS FOLLOW */
const (
maxQuality = 100
maxFPS = 60
)
// makeRequestParams converts passed in ops to url.Values.
func (c *Camera) makeRequestParams(ops *VidOps) url.Values {
params := make(url.Values)
params.Set("cameraNum", strconv.Itoa(c.Number))
if ops == nil {
return params
}
if ops.Width != 0 {
params.Set("width", strconv.Itoa(ops.Width))
}
if ops.Height != 0 {
params.Set("height", strconv.Itoa(ops.Height))
}
if ops.Quality > maxQuality {
ops.Quality = maxQuality
}
if ops.Quality > 0 {
params.Set("quality", strconv.Itoa(ops.Quality))
}
if ops.FPS > maxFPS {
ops.FPS = maxFPS
}
if ops.FPS > 0 {
params.Set("req_fps", strconv.Itoa(ops.FPS))
}
return params
}