-
Notifications
You must be signed in to change notification settings - Fork 29
/
CameraSource.js
278 lines (237 loc) · 8.1 KB
/
CameraSource.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
'use strict'
var ip = require('ip')
var spawn = require('child_process').spawn
var crypto = require('crypto')
module.exports = Camera
function Camera (hap, conf, log) {
this.hap = hap
this.conf = conf
this.log = log
this.services = []
this.streamControllers = []
this.debug = conf.debug === true
this.pendingSessions = {}
this.ongoingSessions = {}
let options = {
proxy: false, // Requires RTP/RTCP MUX Proxy
disable_audio_proxy: false, // If proxy = true, you can opt out audio proxy via this
srtp: true, // Supports SRTP AES_CM_128_HMAC_SHA1_80 encryption
video: {
resolutions: [
// [1920, 1080, 30], // Width, Height, framerate
// [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, 240, 15], // Apple Watch requires this configuration
[320, 180, 30]
],
codec: {
profiles: [0, 1, 2], // Enum, please refer StreamController.VideoCodecParamProfileIDTypes
levels: [0, 1, 2] // Enum, please refer StreamController.VideoCodecParamLevelTypes
}
},
audio: {
comfort_noise: false,
codecs: [
{
type: 'OPUS', // Audio Codec
samplerate: 24 // 8, 16, 24 KHz
},
{
type: 'AAC-eld',
samplerate: 16
}
]
}
}
this._v4l2CTLSetCTRL('rotate', this.conf.rotate || 0)
this._v4l2CTLSetCTRL('vertical_flip', this.conf.verticalFlip ? 1 : 0)
this._v4l2CTLSetCTRL('horizontal_flip', this.conf.horizontalFlip ? 1 : 0)
this.createCameraControlService()
this._createStreamControllers(2, options)
}
Camera.prototype.handleSnapshotRequest = function (request, callback) {
let ffmpegCommand = `\
-f video4linux2 -input_format mjpeg -video_size ${request.width}x${request.height} -i /dev/video0 \
-vframes 1 -f mjpeg -`
if (this.debug) {
console.log('ffmpeg', ffmpegCommand)
}
let ffmpeg = spawn('ffmpeg', ffmpegCommand.split(' '), { env: process.env })
var imageBuffer = Buffer.alloc(0)
ffmpeg.stdout.on('data', function (data) { imageBuffer = Buffer.concat([imageBuffer, data]) })
if (this.debug) {
ffmpeg.stderr.on('data', function (data) { console.log(String(data)) })
}
ffmpeg.on('error', error => {
this.log('Failed to take a snapshot')
if (this.debug) {
console.log('Error:', error.message)
}
})
ffmpeg.on('close', code => {
if (!code || code === 255) {
this.log(`Took snapshot at ${request.width}x${request.height}`)
callback(null, imageBuffer)
} else {
this.log(`ffmpeg exited with code ${code}`)
}
})
}
Camera.prototype.handleCloseConnection = function (connectionID) {
this.streamControllers.forEach(function (controller) {
controller.handleCloseConnection(connectionID)
})
}
Camera.prototype.prepareStream = function (request, callback) {
// Invoked when iOS device requires stream
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 srtpKey = videoInfo['srtp_key']
let srtpSalt = videoInfo['srtp_salt']
// SSRC is a 32 bit integer that is unique per stream
let ssrcSource = crypto.randomBytes(4)
ssrcSource[0] = 0
let ssrc = ssrcSource.readInt32BE(0, true)
let videoResp = {
port: targetPort,
ssrc: ssrc,
srtp_key: srtpKey,
srtp_salt: srtpSalt
}
response['video'] = videoResp
sessionInfo['video_port'] = targetPort
sessionInfo['video_srtp'] = Buffer.concat([srtpKey, srtpSalt])
sessionInfo['video_ssrc'] = ssrc
}
let audioInfo = request['audio']
if (audioInfo) {
let targetPort = audioInfo['port']
let srtpKey = audioInfo['srtp_key']
let srtpSalt = audioInfo['srtp_salt']
// SSRC is a 32 bit integer that is unique per stream
let ssrcSource = crypto.randomBytes(4)
ssrcSource[0] = 0
let ssrc = ssrcSource.readInt32BE(0, true)
let audioResp = {
port: targetPort,
ssrc: ssrc,
srtp_key: srtpKey,
srtp_salt: srtpSalt
}
response['audio'] = audioResp
sessionInfo['audio_port'] = targetPort
sessionInfo['audio_srtp'] = Buffer.concat([srtpKey, srtpSalt])
sessionInfo['audio_ssrc'] = ssrc
}
let currentAddress = ip.address()
var addressResp = {
address: currentAddress
}
if (ip.isV4Format(currentAddress)) {
addressResp['type'] = 'v4'
} else {
addressResp['type'] = 'v6'
}
response['address'] = addressResp
this.pendingSessions[this.hap.uuid.unparse(sessionID)] = sessionInfo
callback(response)
}
Camera.prototype.handleStreamRequest = function (request) {
var sessionID = request['sessionID']
var requestType = request['type']
if (!sessionID) return
let sessionIdentifier = this.hap.uuid.unparse(sessionID)
if (requestType === 'start' && this.pendingSessions[sessionIdentifier]) {
var width = 1280
var height = 720
var fps = 30
var bitrate = 300
if (request['video']) {
width = request['video']['width']
height = request['video']['height']
fps = Math.min(fps, request['video']['fps']) // TODO define max fps
bitrate = request['video']['max_bit_rate']
}
this._v4l2CTLSetCTRL('video_bitrate', `${bitrate}000`)
let srtp = this.pendingSessions[sessionIdentifier]['video_srtp'].toString('base64')
let address = this.pendingSessions[sessionIdentifier]['address']
let port = this.pendingSessions[sessionIdentifier]['video_port']
let ssrc = this.pendingSessions[sessionIdentifier]['video_ssrc']
this.log(`Starting video stream (${width}x${height}, ${fps} fps, ${bitrate} kbps)`)
let ffmpegCommand = `\
-f video4linux2 -input_format h264 -video_size ${width}x${height} -framerate ${fps} -timestamps abs -i /dev/video0 \
-vcodec copy -copyts -an -payload_type 99 -ssrc ${ssrc} -f rtp \
-srtp_out_suite AES_CM_128_HMAC_SHA1_80 -srtp_out_params ${srtp} \
srtp://${address}:${port}?rtcpport=${port}&localrtcpport=${port}&pkt_size=1378`
if (this.debug) {
console.log('ffmpeg', ffmpegCommand)
}
let ffmpeg = spawn('ffmpeg', ffmpegCommand.split(' '), { env: process.env })
ffmpeg.stderr.on('data', data => {
if (this.debug) {
console.log(String(data))
}
})
ffmpeg.on('error', error => {
this.log('Failed to start video stream')
if (this.debug) {
console.log('Error:', error.message)
}
})
ffmpeg.on('close', code => {
if (!code || code === 255) {
this.log('Video stream stopped')
} else {
this.log(`ffmpeg exited with code ${code}`)
}
})
this.ongoingSessions[sessionIdentifier] = ffmpeg
delete this.pendingSessions[sessionIdentifier]
}
if (requestType === 'stop' && this.ongoingSessions[sessionIdentifier]) {
this.ongoingSessions[sessionIdentifier].kill('SIGKILL')
delete this.ongoingSessions[sessionIdentifier]
}
}
Camera.prototype.createCameraControlService = function () {
var controlService = new this.hap.Service.CameraControl()
// Developer can add control characteristics like rotation, night vision at here.
this.services.push(controlService)
}
// Private
Camera.prototype._createStreamControllers = function (maxStreams, options) {
let self = this
for (var i = 0; i < maxStreams; i++) {
var streamController = new this.hap.StreamController(i, options, self)
self.services.push(streamController.service)
self.streamControllers.push(streamController)
}
}
Camera.prototype._v4l2CTLSetCTRL = function (name, value) {
let v4l2ctlCommand = `--set-ctrl ${name}=${value}`
if (this.debug) {
console.log('v4l2-ctl', v4l2ctlCommand)
}
let v4l2ctl = spawn('v4l2-ctl', v4l2ctlCommand.split(' '), { env: process.env })
v4l2ctl.on('error', err => {
this.log(`Failed to set '${name}' to '${value}'`)
if (this.debug) {
console.log('Error:', err.message)
}
})
if (this.debug) {
v4l2ctl.stderr.on('data', function (data) { console.log(String(data)) })
}
}