-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathffmpegStream.js
More file actions
269 lines (223 loc) · 7.42 KB
/
ffmpegStream.js
File metadata and controls
269 lines (223 loc) · 7.42 KB
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
const WebSocket = require('ws');
var EventEmitter = require('events');
const child_process = require('child_process')
const { exec } = require("child_process");
class Stream 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 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 ={
Stream:Stream,
RecordNSnap:RecordNSnap
}