-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcamera-motion.js
320 lines (262 loc) · 9.7 KB
/
camera-motion.js
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
'use strict';
const fs = require('fs');
const ip = require('ip');
const FIFO = require('fifo-js');
const spawn = require('child_process').spawn;
let Service, Characteristic, uuid, StreamController, Accessory, hap;
module.exports = (homebridge) => {
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
uuid = homebridge.hap.uuid;
StreamController = homebridge.hap.StreamController;
Accessory = homebridge.platformAccessory;
hap = homebridge.hap;
homebridge.registerPlatform('homebridge-camera-motion', 'CameraMotion', CameraMotionPlatform, true);
};
class CameraMotionPlatform
{
constructor(log, config, api) {
log(`CameraMotion Platform Plugin starting`,config);
this.log = log;
this.api = api;
this.config = config;
if (!config) return; // TODO: what gives with initializing platforms twice, once with config once without?
this.name = config.name || 'Camera';
this.motionAccessory = new CameraMotionAccessory(log, config, api);
this.api.on('didFinishLaunching', this.didFinishLaunching.bind(this));
}
accessories(cb) {
cb([this.motionAccessory]);
}
didFinishLaunching() {
if (global._mcp_launched) return; // call only once
global._mcp_launched = true; // TODO: really, why is this called twice? from where?
const cameraName = this.name;
const uu = uuid.generate(cameraName);
console.log('uuid=',uu);
const cameraAccessory = new Accessory(cameraName, uu, hap.Accessory.Categories.CAMERA);
this.cameraSource = new CameraSource(hap, this.config);
cameraAccessory.configureCameraSource(this.cameraSource);
this.motionAccessory.setSource(this.cameraSource);
const configuredAccessories = [cameraAccessory];
this.api.publishCameraAccessories('CameraMotion', configuredAccessories);
this.log(`published camera`);
}
}
// An accessory with a MotionSensor service
class CameraMotionAccessory
{
constructor(log, config, api) {
log(`CameraMotion accessory starting`);
this.log = log;
this.api = api;
config = config || {};
this.name = config.name_motion || 'Motion Detector';
this.pipePath = config.motion_pipe || '/tmp/motion-pipe';
this.timeout = config.motion_timeout !== undefined ? config.motion_timeout : 2000;
this.pipe = new FIFO(this.pipePath);
this.pipe.setReader(this.onPipeRead.bind(this));
this.motionService = new Service.MotionSensor(this.name);
this.setMotion(false);
}
setSource(cameraSource) {
this.cameraSource = cameraSource;
}
setMotion(detected) {
this.motionService
.getCharacteristic(Characteristic.MotionDetected)
.setValue(detected);
}
onPipeRead(text) {
console.log(`got from pipe: |${text}|`);
// on_picture_save printf '%f\t%n\t%v\t%i\t%J\t%K\t%L\t%N\t%D\n' > /tmp/camera-pipe
// http://htmlpreview.github.io/?https://github.com/Motion-Project/motion/blob/master/motion_guide.html#conversion_specifiers
// %f filename with full path
// %n number indicating filetype
// %v event
// %i width of motion area
// %J height of motion area
// %K X coordinates of motion center
// %L Y coordinates of motion center
// %N noise level
// %D changed pixels
const [filename, filetype, event, width, height, x, y, noise, dpixels] = text.trim().split('\t');
console.log('filename is',filename);
this.cameraSource.snapshot_path = filename;
this.setMotion(true);
setTimeout(() => this.setMotion(false), this.timeout); // TODO: is this how this works?
}
getServices() {
return [this.motionService];
}
}
// Source for the camera images
class CameraSource
{
constructor(hap, config) {
this.hap = hap;
this.config = config;
this.snapshot_path = '/tmp/lastsnap.jpg'; // Will be reset by onPipeRead(...)
this.ffmpeg_path = config.ffmpeg_path || false;
this.ffmpegSource = config.ffmpeg_source;
this.pendingSessions = {};
this.ongoingSessions = {};
this.services = []; // TODO: where is this used?
// Create control service
this.controlService = new Service.CameraControl();
// Create stream controller(s) (only one for now TODO: more?)
const videoResolutions = [
// width, height, fps
[1920, 1080, 30],
[320, 240, 15],
[1280, 960, 30],
[1280, 720, 30],
[1024, 768, 30],
[640, 480, 30],
[640, 360, 30],
[480, 360, 30],
[480, 270, 30],
[320, 240, 30],
[320, 180, 30]
];
// see https://github.com/KhaosT/homebridge-camera-ffmpeg/blob/master/ffmpeg.js
const options = {
proxy: false, // Requires RTP/RTCP MUX Proxy
srtp: true, // Supports SRTP AES_CM_128_HMAC_SHA1_80 encryption
video: {
resolutions: videoResolutions,
codec: {
profiles: [0, 1, 2], // Enum, please refer StreamController.VideoCodecParamProfileIDTypes
levels: [0, 1, 2] // Enum, please refer StreamController.VideoCodecParamLevelTypes
}
},
audio: {
codecs: [
{
type: "OPUS", // Audio Codec
samplerate: 24 // 8, 16, 24 KHz
},
{
type: "AAC-eld",
samplerate: 16
}
]
}
};
this.streamController = new StreamController(0, options, this);
this.services.push(this.streamController.service);
}
handleCloseConnection(connectionID) {
this.streamController.handleCloseConnection(connectionID);
}
// stolen from https://github.com/KhaosT/homebridge-camera-ffmpeg/blob/master/ffmpeg.js TODO: why can't this be in homebridge itself?
prepareStream(request, cb) {
var sessionInfo = {};
let sessionID = request["sessionID"];
let targetAddress = request["targetAddress"];
sessionInfo["address"] = targetAddress;
var response = {};
let videoInfo = request["video"];
if (videoInfo) {
let targetPort = videoInfo["port"];
let srtp_key = videoInfo["srtp_key"];
let srtp_salt = videoInfo["srtp_salt"];
let videoResp = {
port: targetPort,
ssrc: 1,
srtp_key: srtp_key,
srtp_salt: srtp_salt
};
response["video"] = videoResp;
sessionInfo["video_port"] = targetPort;
sessionInfo["video_srtp"] = Buffer.concat([srtp_key, srtp_salt]);
sessionInfo["video_ssrc"] = 1;
}
let audioInfo = request["audio"];
if (audioInfo) {
let targetPort = audioInfo["port"];
let srtp_key = audioInfo["srtp_key"];
let srtp_salt = audioInfo["srtp_salt"];
let audioResp = {
port: targetPort,
ssrc: 1,
srtp_key: srtp_key,
srtp_salt: srtp_salt
};
response["audio"] = audioResp;
sessionInfo["audio_port"] = targetPort;
sessionInfo["audio_srtp"] = Buffer.concat([srtp_key, srtp_salt]);
sessionInfo["audio_ssrc"] = 1;
}
let currentAddress = ip.address();
console.log('currentAddress',currentAddress);
var addressResp = {
address: currentAddress
};
console.log('addressResp',addressResp);
if (ip.isV4Format(currentAddress)) {
addressResp["type"] = "v4";
} else {
addressResp["type"] = "v6";
}
response["address"] = addressResp;
this.pendingSessions[uuid.unparse(sessionID)] = sessionInfo;
cb(response)
}
// also based on homebridge-camera-ffmpeg!
handleStreamRequest(request) {
if (!this.ffmpeg_path) {
console.log(`No ffmpeg_path set, ignoring handleStreamRequest`,request);
return;
}
console.log('received handleStreamRequest',request);
var sessionID = request["sessionID"];
var requestType = request["type"];
if (sessionID) {
let sessionIdentifier = uuid.unparse(sessionID);
if (requestType == "start") {
var sessionInfo = this.pendingSessions[sessionIdentifier];
console.log('starting',sessionInfo);
if (sessionInfo) {
var width = 1280;
var height = 720;
var fps = 30;
var bitrate = 300;
let videoInfo = request["video"];
if (videoInfo) {
width = videoInfo["width"];
height = videoInfo["height"];
let expectedFPS = videoInfo["fps"];
if (expectedFPS < fps) {
fps = expectedFPS;
}
bitrate = videoInfo["max_bit_rate"];
}
let targetAddress = sessionInfo["address"];
let targetVideoPort = sessionInfo["video_port"];
let videoKey = sessionInfo["video_srtp"];
let ffmpegCommand = this.ffmpegSource + ' -threads 0 -vcodec libx264 -an -pix_fmt yuv420p -r '+ fps +' -f rawvideo -tune zerolatency -vf scale='+ width +':'+ height +' -b:v '+ bitrate +'k -bufsize '+ bitrate +'k -payload_type 99 -ssrc 1 -f rtp -srtp_out_suite AES_CM_128_HMAC_SHA1_80 -srtp_out_params '+videoKey.toString('base64')+' srtp://'+targetAddress+':'+targetVideoPort+'?rtcpport='+targetVideoPort+'&localrtcpport='+targetVideoPort+'&pkt_size=1378';
console.log('about to spawn ffmpeg');
console.log(ffmpegCommand);
let ffmpeg = spawn(this.ffmpeg_path, ffmpegCommand.split(' '), {env: process.env});
this.ongoingSessions[sessionIdentifier] = ffmpeg;
}
delete this.pendingSessions[sessionIdentifier];
} else if (requestType == "stop") {
var ffmpegProcess = this.ongoingSessions[sessionIdentifier];
if (ffmpegProcess) {
ffmpegProcess.kill('SIGKILL');
}
delete this.ongoingSessions[sessionIdentifier];
}
}
}
handleSnapshotRequest(request, cb) {
console.log('handleSnapshotRequest',request);
fs.readFile(this.snapshot_path, (err, data) => {
if (err) return cb(err);
// TODO: scale to requested dimensions
cb(null, data);
});
}
}