forked from pabloFuente/mediasoup-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.js
705 lines (626 loc) · 22.8 KB
/
client.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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
const SERVER_CONFIG = require('./config');
const MediasoupClient = require('mediasoup-client');
const SocketClient = require('socket.io-client');
const SocketPromise = require('./lib/socket.io-promise').promise;
let device;
const sessionId = 'TestSession';
const videoProducers = new Map();
const audioProducers = new Map();
const videoConsumers = new Map();
const audioConsumers = new Map();
function connectWebSocket() {
const opts = {
path: SERVER_CONFIG.path,
transports: ['websocket']
};
const serverUrl = 'https://' + SERVER_CONFIG.ip + ':' + SERVER_CONFIG.port;
socket = SocketClient(serverUrl, opts);
socket.request = SocketPromise(socket);
socket.on('connect', () => {
const msg = 'WebSocket connected';
console.log(msg);
log(msg);
});
socket.on('connecting', () => {
const msg = 'WebSocket connecting';
console.log(msg);
log(msg);
});
socket.on('connect_error', error => {
const msg = 'WebSocket connect error: ' + error;
console.error(msg);
log(msg);
});
socket.on('connect_timeout', () => {
const msg = 'WebSocket connect timeout';
console.error(msg);
log(msg);
});
socket.on('disconnect', reason => {
const msg = 'WebSocket disconnect: ' + reason;
console.warn(msg);
log(msg);
if (reason === 'io server disconnect') {
// The disconnection was initiated by the server, you need to reconnect manually
socket.connect();
}
});
socket.on('error', error => {
console.error('WebSocket error', error);
});
socket.on('reconnecting', () => {
const msg = 'WebSocket reconnecting';
console.log(msg);
log(msg);
});
socket.on('reconnect', attemptNumber => {
const msg = 'WebSocket reconnected. Attempt ' + attemptNumber;
console.log(msg);
log(msg);
});
socket.on('reconnect_attempt', attemptNumber => {
const msg = 'WebSocket trying to reconnect (attempt ' + attemptNumber + ')'
console.log(msg);
log(msg);
});
socket.on('reconnect_error', error => {
console.error('WebSocket reconnect error', error);
});
socket.on('reconnect_failed', () => {
const msg = 'WebSocket reconnect failed';
console.error(msg);
log(msg);
});
socket.on('ping', () => {
console.log('ping');
});
socket.on('pong', latency => {
console.log('pong (' + latency + ' ms of latency)');
});
}
function joinSession() {
socket.request('joinRoom', {
sessionId
}).then(response => {
let msg = 'Joined to session ' + sessionId;
console.log(msg);
console.log('Session ' + sessionId + ' is associated to mediasoup Router with codecs', response.rtpCapabilities);
log(msg + '. Associated mediasoup Router with codecs ' + JSON.stringify(response.rtpCapabilities.codecs.map(codec => codec.mimeType)));
try {
device = new MediasoupClient.Device();
} catch (error) {
if (error.name === 'UnsupportedError')
console.error('browser not supported');
}
device.load({
routerRtpCapabilities: response.rtpCapabilities
})
.then(() => {
let canProduce = [];
if (device.canProduce('audio')) {
canProduce.push('audio');
}
if (device.canProduce('video')) {
canProduce.push('video');
}
msg = 'Client side: device successfully loaded for client ' + device.handlerName + '. Can produce ' + JSON.stringify(canProduce) +
'. Support for codecs ' + JSON.stringify(device.rtpCapabilities.codecs.map(codec => codec.mimeType));
console.log(msg);
log(msg);
}).catch(error => {
console.error('Error while loading Device', error);
});
}).catch(error => {
console.error('Error joining session ' + sessionId, error);
})
}
function publish() {
socket.request('createProducerTransport', {
sessionId
}).then(response => {
let msg = 'Server side: WebRtc Transport created (' + response.transportOptions.id + ')';
console.log(msg);
log(msg);
const transport = device.createSendTransport(response.transportOptions);
msg = 'Client side: WebRtc Transport created (' + transport.id + ') with direction "' + transport.direction + '"';
console.log(msg);
log(msg);
transport.on('connect', async ({
dtlsParameters
}, callback, errback) => {
msg = 'Client side: Transport (' + transport.id + ') triggered event "connect"';
console.log(msg);
log(msg);
socket.request('connectProducerTransport', {
dtlsParameters,
transportId: transport.id
}).then(() => {
msg = 'Server side: Transport (' + transport.id + ') is now connected';
console.log(msg);
log(msg);
callback();
}).catch(error => {
errback(error);
});
});
transport.on('produce', async ({
kind,
rtpParameters
}, callback, errback) => {
msg = 'Client side: Transport (' + transport.id + ') triggered event "produce"';
console.log(msg);
log(msg);
socket.request('produce', {
transportId: transport.id,
kind,
rtpParameters,
}).then(response => {
msg = 'Server side: Producer created (' + response.id + ')';
console.log(msg);
log(msg);
callback({
id: response.id
});
}).catch(error => {
errback(error);
});
});
transport.on('connectionstatechange', state => {
msg = 'Client side: Transport (' + transport.id + ') triggered "connectionstatechange" (' + state + ')';
console.log(msg);
log(msg);
switch (state) {
case 'new':
break;
case 'connecting':
break;
case 'connected':
break;
case 'disconnected':
break;
case 'failed':
break;
case 'closed':
break;
default:
break;
}
});
// Send webcam video with 3 simulcast streams.
navigator.mediaDevices.getUserMedia({
video: true,
audio: true
}).then(stream => {
document.getElementById('local-video').srcObject = stream;
// Video track
const videoTrack = stream.getVideoTracks()[0];
transport.produce({
track: videoTrack,
encodings: [{
maxBitrate: 180000,
scaleResolutionDownBy: 4
},
{
maxBitrate: 360000,
scaleResolutionDownBy: 2
},
{
maxBitrate: 1500000,
scaleResolutionDownBy: 1
}
],
codecOptions: {
videoGoogleStartBitrate: 1000
}
}).then(producer => {
videoProducers.set(producer.id, producer);
msg = 'Client side: Producer (' + producer.id + ') of kind "' + producer.kind + '" created';
console.log(msg);
log(msg);
}).catch(error => {
console.error('Error while calling Transport.produce for the video track', error);
});
// Audio track
const audioTrack = stream.getAudioTracks()[0];
transport.produce({
track: audioTrack
}).then(producer => {
audioProducers.set(producer.id, producer);
msg = 'Client side: Producer (' + producer.id + ') of kind "' + producer.kind + '" created';
console.log(msg);
log(msg);
}).catch(error => {
console.error('Error while calling Transport.produce for the video track', error);
});
});
}).catch(error => {
console.error('Error while creating Producer Transport in server side', error);
});
}
function subscribe() {
const videoProducer = videoProducers.values().next().value;
const audioProducer = audioProducers.values().next().value;
socket.request('createConsumerTransport', {
sessionId
}).then(response => {
let msg = 'Server side: WebRtc Transport created (' + response.transportOptions.id + ')';
console.log(msg);
log(msg);
const transport = device.createRecvTransport(response.transportOptions);
msg = 'Client side: WebRtc Transport created (' + transport.id + ') with direction "' + transport.direction + '"';
console.log(msg);
log(msg);
console.log();
transport.on('connect', async ({
dtlsParameters
}, callback, errback) => {
msg = 'Client side: Transport (' + transport.id + ') triggered event "connect"';
console.log(msg);
log(msg);
socket.request('connectConsumerTransport', {
dtlsParameters,
transportId: transport.id
}).then(() => {
msg = 'Server side: Transport (' + transport.id + ') is now connected';
console.log(msg);
log(msg);
callback();
}).catch(error => {
errback(error);
})
});
transport.on('connectionstatechange', state => {
msg = 'Client side: Transport (' + transport.id + ') triggered "connectionstatechange" (' + state + ')';
console.log(msg);
log(msg);
switch (state) {
case 'new':
break;
case 'connecting':
break;
case 'connected':
break;
case 'disconnected':
break;
case 'failed':
break;
case 'closed':
break;
default:
break;
}
});
socket.request('consume', {
sessionId: sessionId,
videoProducerId: videoProducer.id,
audioProducerId: audioProducer.id,
rtpCapabilities: device.rtpCapabilities,
transportId: transport.id
}).then(response => {
msg = 'Server side: Consumer created (' + response.id + ')';
console.log(msg);
log(msg);
document.getElementById('spatial-layer').value = response.currentLayers.spatialLayer;
document.getElementById('temporal-layer').value = response.currentLayers.temporalLayer;
const remoteStream = new MediaStream();
// Consume video
transport.consume({
id: response.video.id,
producerId: response.video.producerId,
kind: response.video.kind,
rtpParameters: response.video.rtpParameters
})
.then(videoConsumer => {
const {
spatialLayers,
temporalLayers
} = MediasoupClient.parseScalabilityMode(videoConsumer.rtpParameters.encodings[0].scalabilityMode);
console.log('SIMULCAST: ' + spatialLayers + ' - ' + temporalLayers);
videoConsumers.set(videoConsumer.id, videoConsumer);
msg = 'Client side: VIDEO Consumer (' + videoConsumer.id + ') of kind "' + videoConsumer.kind + '" associated to ' + videoConsumer.producerId + ' created';
console.log(msg);
log(msg);
remoteStream.addTrack(videoConsumer.track);
document.getElementById('remote-video').srcObject = remoteStream;
}).catch(error => {
console.error('Error while calling VIDEO Transport.consume', error);
});
// Consume audio
transport.consume({
id: response.audio.id,
producerId: response.audio.producerId,
kind: response.audio.kind,
rtpParameters: response.audio.rtpParameters
})
.then(audioConsumer => {
audioConsumers.set(audioConsumer.id, audioConsumer);
msg = 'Client side: AUDIO Consumer (' + audioConsumer.id + ') of kind "' + audioConsumer.kind + '" associated to ' + audioConsumer.producerId + ' created';
console.log(msg);
log(msg);
remoteStream.addTrack(audioConsumer.track);
}).catch(error => {
console.error('Error while calling AUDIO Transport.consume', error);
});
}).catch(error => {
console.error('Error calling "consume"', error);
});
}).catch(error => {
console.error('Error while creating Consumer Transport in server side', error);
})
}
function pauseVideoPublisher() {
const videoProducer = videoProducers.values().next().value;
socket.request('pauseProducer', {
producerId: videoProducer.id
}).then(() => {
videoProducer.pause();
const msg = 'VIDEO producer (' + videoProducer.id + ') paused';
console.log(msg);
log(msg);
});
}
function pauseAudioPublisher() {
const audioProducer = audioProducers.values().next().value;
socket.request('pauseProducer', {
producerId: audioProducer.id
}).then(() => {
audioProducer.pause();
const msg = 'AUDIO producer (' + audioProducer.id + ') paused';
console.log(msg);
log(msg);
});
}
function pauseVideoSubscriber() {
const videoConsumer = videoConsumers.values().next().value;
socket.request('pauseConsumer', {
consumerId: videoConsumer.id
}).then(() => {
videoConsumer.pause();
const msg = 'VIDEO consumer (' + videoConsumers.id + ') paused';
console.log(msg);
log(msg);
});
}
function pauseAudioSubscriber() {
const audioConsumer = audioConsumers.values().next().value;
socket.request('pauseConsumer', {
consumerId: audioConsumer.id
}).then(() => {
audioConsumer.pause();
const msg = 'AUDIO consumer (' + audioConsumer.id + ') paused';
console.log(msg);
log(msg);
});
}
function resumeVideoPublisher() {
const videoProducer = videoProducers.values().next().value;
socket.request('resumeProducer', {
producerId: videoProducer.id
}).then(() => {
videoProducer.resume();
const msg = 'VIDEO producer (' + videoProducer.id + ') resumed';
console.log(msg);
log(msg);
});
}
function resumeAudioPublisher() {
const audioProducer = audioProducers.values().next().value;
socket.request('resumeProducer', {
producerId: audioProducer.id
}).then(() => {
audioProducer.resume();
const msg = 'AUDIO producer (' + audioProducer.id + ') resumed';
console.log(msg);
log(msg);
});
}
function resumeVideoSubscriber() {
const videoConsumer = videoConsumers.values().next().value;
socket.request('resumeConsumer', {
consumerId: videoConsumer.id
}).then(() => {
videoConsumer.resume();
const msg = 'VIDEO Consumer (' + videoConsumer.id + ') resumed';
console.log(msg);
log(msg);
});
}
function resumeAudioSubscriber() {
const audioConsumer = audioConsumers.values().next().value;
socket.request('resumeConsumer', {
consumerId: audioConsumer.id
}).then(() => {
audioConsumer.resume();
const msg = 'AUDIO Consumer (' + audioConsumer.id + ') resumed';
console.log(msg);
log(msg);
});
}
function closePublisher() {
const videoProducer = videoProducers.values().next().value;
const audioProducer = audioProducers.values().next().value;
socket.request('closeProducer', {
producerId: videoProducer.id
}).then(() => {
videoProducer.close();
const msg = 'VIDEO producer (' + videoProducer.id + ') closed';
console.log(msg);
log(msg);
});
socket.request('closeProducer', {
producerId: audioProducer.id
}).then(() => {
audioProducer.close();
const msg = 'AUDIO producer (' + audioProducer.id + ') closed';
console.log(msg);
log(msg);
});
}
function closeSubscriber() {
const videoConsumer = videoConsumers.values().next().value;
const audioConsumer = audioConsumers.values().next().value;
socket.request('closeConsumer', {
consumerId: videoConsumer.id
}).then(() => {
videoConsumer.close();
const msg = 'VIDEO Consumer (' + videoConsumer.id + ') closed';
console.log(msg);
log(msg);
});
socket.request('closeConsumer', {
consumerId: audioConsumer.id
}).then(() => {
audioConsumer.close();
const msg = 'AUDIO Consumer (' + audioConsumer.id + ') closed';
console.log(msg);
log(msg);
});
}
function videoPublisherStats() {
const videoProducer = videoProducers.values().next().value;
socket.request('publisherStats', {
producerId: videoProducer.id
}).then(remoteStats => {
videoProducer.getStats().then(stats => {
console.log('Remote stats for VIDEO producer ' + videoProducer.id, remoteStats);
let localStats = {};
for (const [key, value] of stats.entries()) {
localStats[key] = value;
}
console.log('Local stats for VIDEO producer ' + videoProducer.id, localStats);
log('Local and remote stats received for VIDEO producer ' + videoProducer.id + ' (see console)');
});
});
}
function audioPublisherStats() {
const audioProducer = audioProducers.values().next().value;
socket.request('publisherStats', {
producerId: audioProducer.id
}).then(remoteStats => {
audioProducer.getStats().then(stats => {
console.log('Remote stats for AUDIO producer ' + audioProducer.id, remoteStats);
let localStats = {};
for (const [key, value] of stats.entries()) {
localStats[key] = value;
}
console.log('Local stats for AUDIO producer ' + audioProducer.id, localStats);
log('Local and remote stats received for AUDIO producer ' + audioProducer.id + ' (see console)');
});
});
}
function videoSubscriberStats() {
const videoConsumer = videoConsumers.values().next().value;
socket.request('subscriberStats', {
consumerId: videoConsumer.id
}).then(remoteStats => {
videoConsumer.getStats().then(stats => {
console.log('Remote stats for VIDEO consumer ' + videoConsumer.id, remoteStats);
let localStats = {};
for (const [key, value] of stats.entries()) {
localStats[key] = value;
}
console.log('Local stats for VIDEO consumer ' + videoConsumer.id, localStats);
log('Local and remote stats received for VIDEO consumer ' + videoConsumer.id + ' (see console)');
});
});
}
function audioSubscriberStats() {
const audioConsumer = audioConsumers.values().next().value;
socket.request('subscriberStats', {
consumerId: audioConsumer.id
}).then(remoteStats => {
audioConsumer.getStats().then(stats => {
console.log('Remote stats for AUDIO consumer ' + audioConsumer.id, remoteStats);
let localStats = {};
for (const [key, value] of stats.entries()) {
localStats[key] = value;
}
console.log('Local stats for AUDIO consumer ' + audioConsumer.id, localStats);
log('Local and remote stats received for AUDIO consumer ' + audioConsumer.id + ' (see console)');
});
});
}
function recordAudio() {
const audioProducer = audioProducers.values().next().value;
socket.request('record', {
sessionId,
audioProducerId: audioProducer.id,
hasAudio: true,
hasVideo: false
}).then(() => {
console.log('Recording started');
});
}
function recordVideo() {
const videoProducer = videoProducers.values().next().value;
socket.request('record', {
sessionId,
videoProducerId: videoProducer.id,
hasAudio: false,
hasVideo: true
}).then(() => {
console.log('Recording started');
});
}
function recordAudioVideo() {
const audioProducer = audioProducers.values().next().value;
const videoProducer = audioProducers.values().next().value;
socket.request('record', {
sessionId,
videoProducerId: videoProducer.id,
audioProducerId: audioProducer.id,
hasAudio: true,
hasVideo: true
}).then(() => {
console.log('Recording started');
});
}
function stopRecord() {
socket.request('stopRecord', {
sessionId
}).then(() => {
console.log('Recoding stopped');
});
}
function changeSimulcast() {
const videoConsumer = videoConsumers.values().next().value;
const spatialLayer = document.getElementById('spatial-layer').value;
const temporalLayer = document.getElementById('temporal-layer').value;
socket.request('changeSimulcast', {
consumerId: videoConsumer.id,
spatialLayer: parseInt(spatialLayer),
temporalLayer: parseInt(temporalLayer)
}).then(() => {
console.log('Simulcast layer changed');
});
}
function log(text) {
const previousLog = document.getElementById('textarea').value;
const newLog = previousLog + text + '\n';
document.getElementById('textarea').value = newLog;
}
module.exports = {
connectWebSocket,
joinSession,
publish,
subscribe,
pauseVideoPublisher,
pauseAudioPublisher,
pauseVideoSubscriber,
pauseAudioSubscriber,
resumeVideoPublisher,
resumeAudioPublisher,
resumeVideoSubscriber,
resumeAudioSubscriber,
closePublisher,
closeSubscriber,
videoPublisherStats,
audioPublisherStats,
videoSubscriberStats,
audioSubscriberStats,
recordAudio,
recordVideo,
recordAudioVideo,
stopRecord,
changeSimulcast
};