forked from fippo/simulcast-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactive-false-in-addTransceiver.html
154 lines (146 loc) · 5.44 KB
/
active-false-in-addTransceiver.html
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
<html>
<head>
<meta charset="utf-8">
<script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
<script src="https://rawgit.com/otalk/sdp/master/sdp.js"></script>
<script src="https://webrtc.github.io/samples/src/js/third_party/graph.js"></script>
<script src="test-assert.js"></script>
<script src="draw-graphs.js"></script>
<style>
video {
width: 320px;
}
</style>
</head>
<body>
<div id="local">
<h2>Local Video</h2>
</div>
<div id="remotes">
<h2>Remote Videos</h2>
</div>
<script>
const pc1 = new RTCPeerConnection({sdpSemantics: 'unified-plan'});
const pc2 = new RTCPeerConnection({sdpSemantics: 'unified-plan'});
pc1.onicecandidate = (e) => pc2.addIceCandidate(e.candidate);
pc2.onicecandidate = (e) => pc1.addIceCandidate(e.candidate);
pc2.ontrack = (e) => show(e.streams[0], true);
const extensionsToFilter = [
'urn:ietf:params:rtp-hdrext:sdes:mid',
'urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id',
'urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-stream-id',
];
const rids = [0, 1, 2];
navigator.mediaDevices.getUserMedia({video: {width: 1280, height: 720}})
.then((stream) => {
pc1.addTransceiver(stream.getVideoTracks()[0], {
streams: [stream],
sendEncodings: [
/* ignores active: false???*/
{rid: 0, active: false},
{rid: 1, active: true},
{rid: 2, active: true},
]
});
show(stream, false);
return pc1.createOffer();
})
.then((offer) => {
const sections = SDPUtils.splitSections(offer.sdp);
const dtls = SDPUtils.getDtlsParameters(sections[1], sections[0]);
const ice = SDPUtils.getIceParameters(sections[1], sections[0]);
const rtpParameters = SDPUtils.parseRtpParameters(sections[1]);
const rtcpParameters = SDPUtils.parseRtcpParameters(sections[1]);
// The gist of this hack is that rid and mid have the same wire format.
// Kudos to orphis for this clever hack!
const rid = rtpParameters.headerExtensions.find(ext => ext.uri === 'urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id');
rtpParameters.headerExtensions = rtpParameters.headerExtensions.filter(ext => {
return !extensionsToFilter.includes(ext.uri);
});
// This tells the other side that the RID packets are actually mids.
rtpParameters.headerExtensions.push({id: rid.id, uri: 'urn:ietf:params:rtp-hdrext:sdes:mid', direction: 'sendrecv'});
// Filter rtx as we have no wait to reinterpret rrid. Not doing this makes probing use RTX, its not understood
// and ramp-up is slower.
rtpParameters.codecs = rtpParameters.codecs.filter(c => c.name.toUpperCase() !== 'RTX');
let sdp = SDPUtils.writeSessionBoilerplate() +
SDPUtils.writeDtlsParameters(dtls, 'actpass') +
SDPUtils.writeIceParameters(ice) +
'a=group:BUNDLE 0 1 2\r\n' +
'a=msid-semantic:WMS *\r\n';
const codecs = SDPUtils.writeRtpDescription('video', rtpParameters) +
SDPUtils.writeRtcpParameters({
mux:rtcpParameters.mux,
reducedSize: rtcpParameters.reducedSize,
});
sdp += codecs +
'a=setup:actpass\r\n' +
'a=mid:' + rids[0] + '\r\n' +
'a=msid:low low\r\n';
sdp += codecs +
'a=setup:actpass\r\n' +
'a=mid:' + rids[1] + '\r\n' +
'a=msid:mid mid\r\n';
sdp += codecs +
'a=setup:actpass\r\n' +
'a=mid:' + rids[2] + '\r\n' +
'a=msid:hi hi\r\n';
return Promise.all([
pc1.setLocalDescription(offer),
pc2.setRemoteDescription({
type: 'offer',
sdp,
}),
]);
})
.then(() => pc2.createAnswer())
.then(answer => {
const sections = SDPUtils.splitSections(answer.sdp);
const dtls = SDPUtils.getDtlsParameters(sections[1], sections[0]);
const ice = SDPUtils.getIceParameters(sections[1], sections[0]);
const rtpParameters = SDPUtils.parseRtpParameters(sections[1]);
const rtcpParameters = SDPUtils.parseRtcpParameters(sections[1]);
// Avoid duplicating the mid extension even though Chrome does not care (boo!)
rtpParameters.headerExtensions = rtpParameters.headerExtensions.filter(ext => {
return !extensionsToFilter.includes(ext.uri);
});
let sdp = SDPUtils.writeSessionBoilerplate() +
SDPUtils.writeDtlsParameters(dtls, 'active') +
SDPUtils.writeIceParameters(ice) +
'a=group:BUNDLE 0\r\n' +
'a=msid-semantic:WMS *\r\n';
const codecs = SDPUtils.writeRtpDescription('video', rtpParameters) +
SDPUtils.writeRtcpParameters({
mux:rtcpParameters.mux,
reducedSize: rtcpParameters.reducedSize,
});
sdp += codecs;
sdp += 'a=setup:active\r\n';
rids.forEach(rid => {
sdp += 'a=rid:' + rid + ' recv\r\n';
});
sdp += 'a=simulcast:recv ' + rids.join(';') + '\r\n';
sdp += 'a=mid:' + SDPUtils.getMid(SDPUtils.splitSections(pc1.localDescription.sdp)[1]) + '\r\n';
// Re-add headerextensions we filtered.
const headerExtensions = SDPUtils.parseRtpParameters(SDPUtils.splitSections(pc1.localDescription.sdp)[1]).headerExtensions;
headerExtensions.forEach(ext => {
if (extensionsToFilter.includes(ext.uri)) {
sdp += 'a=extmap:' + ext.id + ' ' + ext.uri + '\r\n';
}
});
return Promise.all([
pc2.setLocalDescription(answer),
pc1.setRemoteDescription({
type: 'answer',
sdp
}),
]);
})
.then(() => {
window.setInterval(() => {
draw(pc1, pc2);
}, 2000);
})
.catch(e => console.error(e));
</script>
</body>
</html>