forked from apivideo/browserLiveStream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
189 lines (175 loc) · 6.45 KB
/
server.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
const express = require('express')
const app = express()
const spawn = require('child_process').spawn
app.use(express.static('public'))
const server = require('http').createServer(// {
// key: fs.readFileSync('abels-key.pem'),
// cert: fs.readFileSync('abels-cert.pem')
// },
app)
const io = require('socket.io')(server)
spawn('ffmpeg', ['-h']).on('error', function (m) {
console.error('FFMpeg not found in system cli; please install ffmpeg properly or make a softlink to ./!')
process.exit(-1)
})
io.on('connection', function (socket) {
socket.emit('message', 'Hello from mediarecorder-to-rtmp server!')
socket.emit('message', 'Please set rtmp destination before start streaming.')
let ffmpegProcess; let feedStream = false
socket.on('config_rtmpDestination', function (m) {
if (typeof m !== 'string') {
socket.emit('fatal', 'rtmp destination setup error.')
return
}
const regexValidator = /^rtmp:\/\/[^\s]*$/ // TODO: should read config
if (!regexValidator.test(m)) {
socket.emit('fatal', 'rtmp address rejected.')
return
}
socket._rtmpDestination = m
socket.emit('message', 'rtmp destination set to:' + m)
})
// socket._vcodec='libvpx'; // from firefox default encoder
socket.on('config_vcodec', function (m) {
if (typeof m !== 'string') {
socket.emit('fatal', 'input codec setup error.')
return
}
if (!/^[0-9a-z]{2,}$/.test(m)) {
socket.emit('fatal', 'input codec contains illegal character?.')
return
}// for safety
socket._vcodec = m
})
socket.on('start', function (m) {
if (ffmpegProcess || feedStream) {
socket.emit('fatal', 'stream already started.')
return
}
if (!socket._rtmpDestination) {
socket.emit('fatal', 'no destination given.')
return
}
const framerate = socket.handshake.query.framespersecond
const audioBitrate = parseInt(socket.handshake.query.audioBitrate)
let audioEncoding = '64k'
if (audioBitrate === 11025) {
audioEncoding = '11k'
} else if (audioBitrate === 22050) {
audioEncoding = '22k'
} else if (audioBitrate === 44100) {
audioEncoding = '44k'
}
console.log(audioEncoding, audioBitrate)
console.log('framerate on node side', framerate)
let ops
if (framerate === 1) {
ops = [
'-i', '-',
'-c:v', 'libx264', '-preset', 'ultrafast', '-tune', 'zerolatency',
// '-max_muxing_queue_size', '1000',
// '-bufsize', '5000',
'-r', '1', '-g', '2', '-keyint_min', '2',
'-x264opts', 'keyint=2', '-crf', '25', '-pix_fmt', 'yuv420p',
'-profile:v', 'baseline', '-level', '3',
'-c:a', 'aac', '-b:a', audioEncoding, '-ar', audioBitrate,
'-f', 'flv', socket._rtmpDestination
]
} else if (framerate === 15) {
ops = [
'-i', '-',
'-c:v', 'libx264', '-preset', 'ultrafast', '-tune', 'zerolatency',
'-max_muxing_queue_size', '1000',
'-bufsize', '5000',
'-r', '15', '-g', '30', '-keyint_min', '30',
'-x264opts', 'keyint=30', '-crf', '25', '-pix_fmt', 'yuv420p',
'-profile:v', 'baseline', '-level', '3',
'-c:a', 'aac', '-b:a', audioEncoding, '-ar', audioBitrate,
'-f', 'flv', socket._rtmpDestination
]
} else {
ops = [
'-i', '-',
// '-c', 'copy',
'-c:v', 'libx264', '-preset', 'ultrafast', '-tune', 'zerolatency', // video codec config: low latency, adaptive bitrate
'-c:a', 'aac', '-ar', audioBitrate, '-b:a', audioEncoding, // audio codec config: sampling frequency (11025, 22050, 44100), bitrate 64 kbits
// '-max_muxing_queue_size', '4000',
// '-y', //force to overwrite
// '-use_wallclock_as_timestamps', '1', // used for audio sync
// '-async', '1', // used for audio sync
// '-filter_complex', 'aresample=44100', // resample audio to 44100Hz, needed if input is not 44100
// '-strict', 'experimental',
'-bufsize', '5000',
'-f', 'flv', socket._rtmpDestination
/* . original params
'-i','-',
'-c:v', 'libx264', '-preset', 'veryfast', '-tune', 'zerolatency', // video codec config: low latency, adaptive bitrate
'-c:a', 'aac', '-ar', '44100', '-b:a', '64k', // audio codec config: sampling frequency (11025, 22050, 44100), bitrate 64 kbits
'-y', //force to overwrite
'-use_wallclock_as_timestamps', '1', // used for audio sync
'-async', '1', // used for audio sync
//'-filter_complex', 'aresample=44100', // resample audio to 44100Hz, needed if input is not 44100
//'-strict', 'experimental',
'-bufsize', '1000',
'-f', 'flv', socket._rtmpDestination
*/
]
}
console.log('ops', ops)
console.log(socket._rtmpDestination)
ffmpegProcess = spawn('ffmpeg', ops)
console.log('ffmpeg spawned')
feedStream = function (data) {
ffmpegProcess.stdin.write(data)
// write exception cannot be caught here.
}
ffmpegProcess.stderr.on('data', function (d) {
socket.emit('ffmpeg_stderr', '' + d)
})
ffmpegProcess.on('error', function (e) {
console.log('child process error' + e)
socket.emit('fatal', 'ffmpeg error!' + e)
feedStream = false
socket.disconnect()
})
ffmpegProcess.on('exit', function (e) {
console.log('child process exit' + e)
socket.emit('fatal', 'ffmpeg exit!' + e)
socket.disconnect()
})
})
socket.on('binarystream', function (m) {
if (!feedStream) {
socket.emit('fatal', 'rtmp not set yet.')
ffmpegProcess.stdin.end()
ffmpegProcess.kill('SIGINT')
return
}
feedStream(m)
})
socket.on('disconnect', function () {
console.log('socket disconnected!')
feedStream = false
if (ffmpegProcess) {
try {
ffmpegProcess.stdin.end()
ffmpegProcess.kill('SIGINT')
console.log('ffmpeg process ended!')
} catch (e) { console.warn('killing ffmoeg process attempt failed...') }
}
})
socket.on('error', function (e) {
console.log('socket.io error:' + e)
})
})
io.on('error', function (e) {
console.log('socket.io error:' + e)
})
server.listen(process.env.PORT || 1437, function () {
console.log('https and websocket listening on *:1437')
})
process.on('uncaughtException', function (err) {
// handle the error safely
console.log(err)
// Note: after client disconnect, the subprocess will cause an Error EPIPE, which can only be caught this way.
})