forked from uk2nk/node-ffmpeg-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathffmpegStream.js
468 lines (403 loc) · 14.8 KB
/
ffmpegStream.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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
var fs = require("fs")
const WebSocket = require('ws');
var EventEmitter = require('events');
const child_process = require('child_process')
const {
exec
} = require("child_process");
class WebsocketStream extends EventEmitter {
constructor(input) {
super();
this.name = input.name;
this.start(input);
this.wsCount = 0;
}
start(input) {
this.startStream(input);
}
setOptions(input) {
const options = {
"-rtsp_transport": "tcp",
"-i": input.url,
"-pix_fmt": "yuv420p",
"-f": "mpegts",
"-codec:v": "mpeg1video",
"-codec:a": "mp2",
"-r": input.options["-r"] ? input.options["-r"] : 30,
};
let params = [];
for (let key in options) {
params.push(key);
if (String(options[key]) !== "") {
params.push(String(options[key]));
}
}
this.additionalFlags = []
if (input.options) {
for (let key in input.options) {
if (key !== '-r') {
this.additionalFlags.push(key)
if (String(input.options[key]) !== '') {
this.additionalFlags.push(String(input.options[key]))
}
}
}
}
params.push(...this.additionalFlags);
params.push("-");
return params;
}
startStream(input) {
var inputData = [];
var gettingInputData, gettingOutputData;
this.wss = new WebSocket.Server({
port: input.wsPort
});
this.child = child_process.spawn("ffmpeg", this.setOptions(input), {
detached: false
});
console.log(this.name + " Stream Started...");
console.log("Waiting for socket connection(s)...");
this.child.stdout.on("data", (data) => {
this.wss.clients.forEach((client) => {
client.send(data);
});
return this.emit("data", data);
});
this.child.stderr.on("data", (data) => {
data = data.toString();
if (data.indexOf('Input #') !== -1) {
gettingInputData = true;
}
if (data.indexOf('Output #') !== -1) {
gettingInputData = false
gettingOutputData = true
console.log(data);
}
if (gettingInputData) {
console.log(data);
this.wss.clients.forEach((client) => {
console.log("Inside Clients");
client.send(data);
});
return this.emit("data", data);
}
});
this.child.on('exit', (code, signal) => {
if (code === 1) {
console.error('RTSP stream exited with error');
this.exitCode = 1
return this.emit('exitWithError')
}
})
this.wss.on("connection", (socket, request) => {
this.wsCount = this.wss.clients.size;
this.onSocketConnect(socket, request);
})
this.wss.on("close", (socket, request) => {
console.log(this.name + " : Stream Stopped.");
})
}
onSocketConnect = function (socket, request) {
console.log(this.name + ` :: New socket connected [ Total connection(s) : ` + this.wsCount + "]");
socket.remoteAddress = request.connection.remoteAddress
return socket.on("close", (code, message) => {
this.wsCount = this.wss.clients.size;
return console.log(this.name + ` :: Socket disconnected [ Remaining connection(s) : ` + this.wss.clients.size + "]");
})
}
stopStream = function () {
this.wss.close();
this.child.kill();
return this;
}
}
class PictureStream extends EventEmitter {
constructor() {
super();
}
setOptions(input) {
const options = {
"-rtsp_transport": "tcp",
"-i": input.url,
"-filter:v": "fps=fps=" + (input.fps ? input.fps : 30),
"-r": input.ffmpegOptions["-r"] ? input.ffmpegOptions["-r"] : 30,
"-vsync": "0",
"-f": "image2pipe",
"-": ""
};
let params = [];
for (let key in options) {
params.push(key);
if (String(options[key]) !== "") {
params.push(String(options[key]));
}
}
this.additionalFlags = []
if (input.ffmpegOptions) {
for (let key in input.ffmpegOptions) {
if (key !== '-r') {
this.additionalFlags.push(key)
if (String(input.ffmpegOptions[key]) !== '') {
this.additionalFlags.push(String(input.ffmpegOptions[key]))
}
}
}
}
params.push(...this.additionalFlags);
return params;
}
startStream = function (input) {
this.child = child_process.spawn("ffmpeg", this.setOptions(input), {
detached: false
});
console.log(input.name + " Stream Started...");
this.child.stdout.on("data", (data) => {
this.emit("data", data)
});
this.child.stderr.on("data", (data) => {
this.emit("error", data.toString())
});
this.child.on("exit", (code, signal) => {
if (code === 1) {
console.error("RTSP stream exited with error");
this.exitCode = 1
return this.emit("error", "exitWithError")
}
})
return this
}
stopStream = function () {
if (this.child == undefined) {
this.emit("error", "No Stream to stop was found!")
return this;
} else {
try {
this.child.kill();
} catch (error) {
this.emit("error", error)
return this;
}
}
return this;
}
}
class PictureStreamUSB extends EventEmitter {
constructor() {
super();
}
setOptions(input) {
const options = {
"-input_format": input.ffmpegOptions["-input_format"] ? input.ffmpegOptions["-input_format"] : "h264",
"-video_size": input.ffmpegOptions["-video_size"] ? input.ffmpegOptions["-video_size"] : "1280x720",
"-framerate": input.ffmpegOptions["-framerate"] ? input.ffmpegOptions["-framerate"] : 30,
"-i": input.url ? input.url : "/dev/video0",
"-f": "image2pipe",
"-": ""
};
let params = [];
for (let key in options) {
params.push(key);
if (String(options[key]) !== "") {
params.push(String(options[key]));
}
}
this.additionalFlags = []
if (input.ffmpegOptions) {
for (let key in input.ffmpegOptions) {
if (key !== '-r' && params.findIndex(e => e == key) < 0) {
this.additionalFlags.push(key)
if (String(input.ffmpegOptions[key]) !== '') {
this.additionalFlags.push(String(input.ffmpegOptions[key]))
}
}
}
}
params.push(...this.additionalFlags);
return params;
}
startStream = function (input) {
this.child = child_process.spawn("ffmpeg", this.setOptions(input), {
detached: false
});
console.log(input.name + " Stream Started...");
this.child.stdout.on("data", (data) => {
this.emit("data", data)
});
this.child.stderr.on("data", (data) => {
this.emit("error", data.toString())
});
this.child.on("exit", (code, signal) => {
if (code === 1) {
console.error("USB stream exited with error");
this.exitCode = 1
return this.emit("error", "exitWithError")
}
})
return this
}
stopStream = function () {
if (this.child == undefined) {
this.emit("error", "No Stream to stop was found!")
return this;
} else {
try {
this.child.kill();
} catch (error) {
this.emit("error", error)
return this;
}
}
return this;
}
}
class RecordNSnap extends EventEmitter {
recordVideo = function (input, callback) {
if (!input.url || input.url?.length == 0) {
return callback({
"status": "Failed",
"response": "Rtsp URL required",
"error": error
});
}
input.filePath = input.filePath?.length > 0 ? input.filePath : "";
input.fileName = input.fileName?.length > 0 ? input.fileName : "record_" + getCurrentDatewithTime() + ".mp4";
input.second = input.second?.length > 0 ? input.second : "5";
console.log("Recording started...");
exec("ffmpeg -rtsp_transport tcp -i " + input.url + " -t " + input.second + " " + input.filePath + input.fileName, (error, stdout, stderr) => {
if (error) {
console.log(error);
console.log("Recording completed...");
return callback({
"status": "Failed",
"response": "",
"error": error
});
} else if (stderr) {
if (input.recordType?.toLowerCase() == 'download') {
var fileContent = fs.readFileSync(input.filePath + input.fileName);
var base64 = Buffer.from(fileContent).toString('base64');
console.log(stderr);
console.log("Recording completed...");
fs.unlink(input.filePath + input.fileName, function () {
console.log(input.fileName + " is successfully unlinked.");
});
if (!input.fileMimeType || input.fileMimeType?.length == 0) {
return callback({
"status": "Failed",
"response": "File Mime type(fileMimeType) is required for download URL.",
"error": ""
});
}
return callback({
"status": "Success",
"response": "data:" + input.fileMimeType + ";base64," + base64,
"error": ""
});
} else {
console.log(stderr);
console.log("Recording completed...");
return callback({
"status": "Success",
"response": "Recorded file stored into the given path [ " + input.filePath + input.fileName + "]",
"error": ""
});
}
} else {
console.log("Recording completed...");
console.log(stdout);
return callback({
"status": "Success",
"response": stdout,
"error": ""
});
}
});
}
takeSnap = function (input, callback) {
if (!input.url || input.url?.length == 0) {
return callback({
"status": "Failed",
"response": "Rtsp URL required",
"error": error
});
}
var filepath = input.imagePath;
var fileName = input.imageName;
var url = "ffmpeg -rtsp_transport tcp -ss 2 -i " + input.url + " -y -f image2 -qscale 0 -frames 1 " + filepath + fileName;
exec(url, (error, stdout, stderr) => {
if (error) {
console.log(error);
return callback({
"status": "Failed",
"message": error.message
});
}
if (stderr) {
console.log("Saving snapshot done...");
if (input.snapType?.toLowerCase() == 'download') {
var imageType = input.imageMimeType;
// Check that the file exists locally
if (!fs.existsSync(filepath + fileName)) {
console.log("File not found");
return callback({
"status": "Failed",
"message": "File creation failed. Please try again..."
});
} else {
const contents = fs.readFileSync(input.imagePath + input.imageName, {
encoding: 'base64'
});
fs.unlink(input.imagePath + input.imageName, function () {
console.log(fileName + " is successfully unlinked.");
});
return callback({
"status": "Success",
"base64": "data:" + input.imageMimeType + ";base64," + contents,
"filename": fileName,
"imagetype": imageType,
"message": ""
});
}
} else {
//store snap
console.log("Recording completed...");
console.log(stderr);
return callback({
"status": "Success",
"response": "Snapshot image stored into the given path [ " + input.imagePath + input.imageName + " ]",
"error": ""
});
}
}
});
}
getCurrentDatewithTime = function () {
let date_ob = new Date();
// current date
// adjust 0 before single digit date
let date = ("0" + date_ob.getDate()).slice(-2);
// current month
let month = ("0" + (date_ob.getMonth() + 1)).slice(-2);
// current year
let year = date_ob.getFullYear();
// current hours
let hours = date_ob.getHours();
// current minutes
let minutes = date_ob.getMinutes();
// current seconds
let seconds = date_ob.getSeconds();
// prints date in YYYY-MM-DD format
console.log(year + "-" + month + "-" + date);
// prints date & time in YYYY-MM-DD HH:MM:SS format
let val = year + month + date + hours + minutes + seconds
console.log(val);
return val;
}
}
module.exports = {
WebsocketStream: WebsocketStream,
RecordNSnap: RecordNSnap,
PictureStream: PictureStream,
PictureStreamUSB: PictureStreamUSB
}