forked from muaz-khan/RTCMultiConnection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·471 lines (413 loc) · 26.2 KB
/
index.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
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
<!-- Demo version: 2018.06.17 -->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>RTCMultiConnection Demos</title>
<link rel="canonical" href="/demos/">
<meta name="google-site-verification" content="zhJ273gZGLJ_Cbl-muzPYYTR6jD7sCCgufDIRS5h4SE" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="shortcut icon" href="/demos/logo.png">
<link rel="stylesheet" href="/demos/stylesheet.css">
<script src="/demos/menu.js"></script>
<style>
.search-container {
text-align: left;
margin: -2em 5%;
margin-top: 0;
}
.search-container input {
background-color: transparent;
}
.search-container td {
border: 0;
vertical-align: top;
padding: 0;
border-top: none;
border-right: none;
}
.table-style {
border-collapse: collapse;
border-spacing: 0px;
margin-top: 0px;
margin-bottom: 16px;
display: block;
overflow: auto;
word-break: normal;
color: rgb(51, 51, 51);
font-family: 'Helvetica Neue', Helvetica, 'Segoe UI', Arial, freesans, sans-serif;
font-size: 16px;
line-height: 25.6000003814697px;
margin-top: 10px;
margin-left: 20px;
}
.tr-style {
border-top-width: 1px;
border-top-style: solid;
border-top-color: rgb(204, 204, 204);
background-color: rgb(248, 248, 248);
}
.td-style {
padding: 6px 13px;
border: 1px solid rgb(221, 221, 221);
}
.td-style2 {
color: rgb(65, 131, 196);
text-decoration: none;
background: transparent;
}
.github-button {
color: #24292e!important;
font-size: 11px!important;
font-weight: 600!important;
}
</style>
</head>
<body>
<header>
<a class="logo" href="/demos/"><img src="/demos/logo.png" alt="RTCMultiConnection"></a>
<a href="/demos/" class="menu-explorer">Menu<img src="/demos/menu-icon.png" alt="Menu"></a>
<nav>
<li>
<a href="/demos/">Home</a>
</li>
<li>
<a href="https://www.rtcmulticonnection.org/docs/getting-started/">Getting Started</a>
</li>
<li>
<a href="https://www.rtcmulticonnection.org/FAQ/">FAQ</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PLPRQUXAnRydKdyun-vjKPMrySoow2N4tl">YouTube</a>
</li>
<li>
<a href="https://rtcmulticonnection.herokuapp.com/demos/">Demos</a>
</li>
<li>
<a href="https://github.com/muaz-khan/RTCMultiConnection/wiki">Wiki</a>
</li>
<li>
<a href="https://github.com/muaz-khan/RTCMultiConnection">Github</a>
</li>
</nav>
</header>
<h1>
RTCMultiConnection Demos
<p class="no-mobile">
RTCMultiConnection is a WebRTC JavaScript library for peer-to-peer applications (screen sharing, audio/video conferencing, file sharing, media streaming etc.)
</p>
</h1>
<section id="demos" style="text-align:center;" class="no-mobile">
<h2>
<a href="https://www.npmjs.com/package/rtcmulticonnection"><img src="https://img.shields.io/npm/v/rtcmulticonnection.svg" /></a>
<a class="github-button" href="https://github.com/muaz-khan/RTCMultiConnection" data-show-count="true" aria-label="Star muaz-khan/RTCMultiConnection on GitHub">Star</a>
<a class="github-button" href="https://github.com/muaz-khan/RTCMultiConnection/issues" data-show-count="true" aria-label="Issue muaz-khan/RTCMultiConnection on GitHub">Issue</a>
<a class="github-button" href="https://github.com/muaz-khan/RTCMultiConnection/fork" data-show-count="true" aria-label="Fork muaz-khan/RTCMultiConnection on GitHub">Fork</a>
<a class="github-button" href="https://github.com/muaz-khan" data-show-count="true" aria-label="Follow @muaz-khan on GitHub">Follow @muaz-khan</a>
<a href="https://travis-ci.org/muaz-khan/RTCMultiConnection"><img src="https://travis-ci.org/muaz-khan/RTCMultiConnection.png?branch=master" /></a>
</h2>
</section>
<section id="featured">
<h2>
<a href="#featured">Featured Demos</a>
<a class="github-button" href="https://github.com/muaz-khan/RTCMultiConnection/archive/master.zip" aria-label="Download muaz-khan/RTCMultiConnection on GitHub">RTCMultiConnection.zip</a>
</h2>
<table class="table-style">
<thead>
<tr>
<th class="td-style">RTCMultiConnection Demo Title</th>
<th class="td-style">Demo</th>
<th class="td-style">Source</th>
</tr>
</thead>
<tbody>
<tr class="tr-style" style="background: #e4f6ff;">
<td class="td-style">Video Conferencing (MANY_TO_MANY)</td>
<td class="td-style"><a href="/demos/Video-Conferencing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Video-Conferencing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style" style="background: #e4f6ff;">
<td class="td-style">MCN inside the browser!</td>
<td class="td-style"><a href="/demos/MCU.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/MCU.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style" style="background: #e4f6ff;">
<td class="td-style">SFU inside the browser!</td>
<td class="td-style"><a href="/demos/SFU.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/SFU.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style" style="background: #e4f6ff;">
<td class="td-style">getStats / WebRTC getStats API</td>
<td class="td-style"><a href="/demos/getStats.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/getStats.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style" style="background: #e4f6ff;">
<td class="td-style">Audio+Video+TextChat+FileSharing</td>
<td class="td-style"><a href="/demos/Audio+Video+TextChat+FileSharing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Audio+Video+TextChat+FileSharing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style" style="background: #e4f6ff;">
<td class="td-style">Video Broadcasting (ONE_TO_MANY)</td>
<td class="td-style"><a href="/demos/Video-Broadcasting.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/video-broadcasting.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style" style="background: #e4f6ff;">
<td class="td-style">Fix play/pause bugs using autoCreateMediaElement</td>
<td class="td-style"><a href="/demos/autoCreateMediaElement.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/autoCreateMediaElement.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">WebRTC Scalable Broadcast</td>
<td class="td-style"><a href="/demos/Scalable-Broadcast.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Scalable-Broadcast.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">WebRTC Scalable Video Conferencing</td>
<td class="td-style"><a href="/demos/Scalable-Video-Conferencing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Scalable-Video-Conferencing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">File Sharing</td>
<td class="td-style"><a href="/demos/file-sharing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/blob/master/demos/file-sharing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Pre-recorded media streaming (webm/mp3 live streaming)</td>
<td class="td-style"><a href="/demos/Pre-recorded-Media-Streaming.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/blob/master/demos/Pre-recorded-Media-Streaming.html" class="td-style2">Source</a></td>
</tr>
</tbody>
</table>
</section>
<section id="scalable-broadcast">
<h2>
<a href="#scalable-broadcast">Scalable Broadcast Demos</a>
</h2>
<table class="table-style">
<thead>
<tr>
<th class="td-style">RTCMultiConnection Demo Title</th>
<th class="td-style">Demo</th>
<th class="td-style">Source</th>
</tr>
</thead>
<tbody>
<tr class="tr-style">
<td class="td-style">Scalable Audio/Video Broadcast</td>
<td class="td-style"><a href="/demos/Scalable-Broadcast.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Scalable-Broadcast.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Scalable Screen Broadcast</td>
<td class="td-style"><a href="/demos/Scalable-Screen-Broadcast.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Scalable-Screen-Broadcast.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Scalable Video Broadcast</td>
<td class="td-style"><a href="/demos/Video-Scalable-Broadcast.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Video-Scalable-Broadcast.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Scalable File Sharing</td>
<td class="td-style"><a href="/demos/Files-Scalable-Broadcast.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Files-Scalable-Broadcast.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Scalable Screen+Audio Broadcast</td>
<td class="td-style"><a href="/demos/Scalable-Screen-plus-Audio-Broadcast.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Scalable-Screen-plus-Audio-Broadcast.html" class="td-style2">Source</a></td>
</tr>
</tbody>
</table>
</section>
<section id="v3-demos">
<h2>
<a href="#v3-demos">Other v3 Demos</a>
</h2>
<table class="table-style">
<thead>
<tr>
<th class="td-style">RTCMultiConnection Demo Title</th>
<th class="td-style">Demo</th>
<th class="td-style">Source</th>
</tr>
</thead>
<tbody>
<tr class="tr-style">
<td class="td-style">Audio+Video+Screen Sharing</td>
<td class="td-style"><a href="/demos/Audio-Video-Screen.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Audio-Video-Screen.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">SSE+PHP Signaling (using Server Sent Events)</td>
<td class="td-style"><a href="/demos/SSEConnection.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/SSEConnection.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">One-to-One Video Chat</td>
<td class="td-style"><a href="/demos/One-to-One.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/One-to-One.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Audio Conferencing</td>
<td class="td-style"><a href="/demos/Audio-Conferencing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Audio-Conferencing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Vuejs Video Conferencing</td>
<td class="td-style"><a href="/demos/vuejs-video-conferencing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/vuejs-video-conferencing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Multi-Broadcasters and Many-Viewers</td>
<td class="td-style"><a href="/demos/Multi-Broadcasters-and-Many-Viewers.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Multi-Broadcasters-and-Many-Viewers.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">TextChat & FileSharing</td>
<td class="td-style"><a href="/demos/TextChat+FileSharing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/TextChat+FileSharing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">TextChat Translation</td>
<td class="td-style"><a href="/demos/Translate-TextChat.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Translate-TextChat.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Add/enable videos later in chat-rooms</td>
<td class="td-style"><a href="/demos/addStream-in-Chat-room.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/addStream-in-Chat-room.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Share region/portion/part of screen</td>
<td class="td-style"><a href="/demos/share-part-of-screen.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/share-part-of-screen.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Audio alongwith screen sharing</td>
<td class="td-style"><a href="/demos/Audio+ScreenSharing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Audio+ScreenSharing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">One-to-Many Screen Sharing</td>
<td class="td-style"><a href="/demos/screen-sharing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/screen-sharing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Cross-domain Screen Capturing & Sharing</td>
<td class="td-style"><a href="/demos/Cross-Domain-Screen-Capturing.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Cross-Domain-Screen-Capturing.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Keep ReJoining Room</td>
<td class="td-style"><a href="/demos/keep-rejoining.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/keep-rejoining.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Open/Close/Rejoin/Disconnect/Rejoin rooms without reloading page</td>
<td class="td-style"><a href="/demos/Disconnect+Rejoin.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Disconnect+Rejoin.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Password-protected rooms (Video Conferencing)</td>
<td class="td-style"><a href="/demos/Password-Protected-Rooms.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Password-Protected-Rooms.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Test RTPSender.replaceTrack API (only in Firefox)</td>
<td class="td-style"><a href="/demos/replaceTrack.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/replaceTrack.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Change Video Resolutions in your Live Sessions</td>
<td class="td-style"><a href="/demos/change-resolutions.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/change-resolutions.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Test MediaStreamTrack.applyConstraints API (only in Firefox)</td>
<td class="td-style"><a href="/demos/applyConstraints.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/applyConstraints.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Video Conferencing using Firebase</td>
<td class="td-style"><a href="/demos/Firebase-Demo.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/Firebase-Demo.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Video Conferencing using WebSocket</td>
<td class="td-style"><a href="/demos/WebSocket-Demo.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/WebSocket-Demo.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Video Conferencing using PubNub</td>
<td class="td-style"><a href="/demos/PubNub-Demo.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/PubNub-Demo.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Share custom-private messages among users using Socket.io</td>
<td class="td-style"><a href="/demos/custom-socket-event.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/custom-socket-event.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Detect presence before opening or joining the room.</td>
<td class="td-style"><a href="/demos/checkPresence.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/checkPresence.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Get list of all public moderators (rooms initiators)</td>
<td class="td-style"><a href="/demos/getPublicModerators.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/getPublicModerators.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Switch/Change Cameras in a Live Conference</td>
<td class="td-style"><a href="/demos/switch-cameras.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/switch-cameras.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Check if StreamHasData</td>
<td class="td-style"><a href="/demos/StreamHasData.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/StreamHasData.html" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">MultiRTC / Skype-like app</td>
<td class="td-style"><a href="/demos/MultiRTC/" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/MultiRTC/" class="td-style2">Source</a></td>
</tr>
<tr class="tr-style">
<td class="td-style">Admin/Guest demo</td>
<td class="td-style"><a href="/demos/admin-guest.html" class="td-style2">Demo</a></td>
<td class="td-style"><a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/demos/admin-guest.html" class="td-style2">Source</a></td>
</tr>
</tbody>
</table>
</section>
<section class="no-mobile">
<h2>v2 Demos</h2>
<p>
You can try RTCMultiConnection v2 demos as well:
</p>
<p>
<a href="https://github.com/muaz-khan/RTCMultiConnection/tree/master/v2.2.2">https://github.com/muaz-khan/RTCMultiConnection/tree/master/v2.2.2</a>
</p>
</section>
<section class="no-mobile">
<h2>
How to install RTCMultiConnection?
</h2>
<p>
<a href="https://www.youtube.com/watch?v=EtsiYEW_T8Y">https://www.youtube.com/watch?v=EtsiYEW_T8Y</a>
</p>
</section>
<section class="no-mobile" class="no-mobile">
<h2>iOS or Android</h2>
<p>
You can write <a href="https://www.rtcmulticonnection.org/docs/Write-iOS-Apps/" target="_blank">iOS</a> or <a href="https://www.rtcmulticonnection.org/docs/Write-Android-Apps/" target="_blank">Android</a> apps for all demos.
</p>
</section>
<footer>
<small id="send-message"></small>
</footer>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script async defer src="https://cdn.webrtc-experiment.com/common.js"></script>
</body>
</html>