-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf_audio.html
42 lines (33 loc) · 1.54 KB
/
conf_audio.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Video Conference</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="conference/css/stylesheet.css?202003242059">
<script src="https://kit.fontawesome.com/79103b530b.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="audios-container" class="container_main">
</div>
<div class="btns_containers">
<div class="btn_option" id="mute_microphone" onclick="muteUnmuteMe('audio')">
<i class="fas fa-microphone-slash fa-1x"></i>
</div>
<div class="btn_option" id="mute_video" onclick="muteUnmuteMe('video')">
<i class="fas fa-video-slash fa-1x"></i>
</div>
</div>
<script src="conference/js/RTCMultiConnection.min.js"></script>
<script src="conference/js/adapter.js"></script>
<script src="conference/js/socket.io.js"></script>
<script src="conference/js/jquery.min.js"></script>
<link rel="stylesheet" href="conference/css/getHTMLMediaElement.css">
<script src="conference/js/getHTMLMediaElement.js"></script>
<script>
_ROOM_ID = "COLOQUE_AQUI_UM_CODIGO_UNICO"; //CHANGE HERE WITH UNIQID
</script>
<script src="conference/js/snapdata_audio.js?202003242259"></script>
<script src="https://www.webrtc-experiment.com/common.js"></script>
</body>
</html>