-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathprecall.html
150 lines (138 loc) · 4.94 KB
/
precall.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="cache-control" content="max-age=0">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="shortcut icon" href="assets/favicon.ico">
<title>WebRTC.Ventures AgoraWeb</title>
</head>
<body>
<div class="wrapper" id="page-precall">
<div class="ag-header">
<div class="ag-header-lead">
<img class="ag-header-logo" src="../../assets/images/webrtc-logo-no-text.png" alt="">
<!--<span>AgoraWeb v2.2</span>-->
</div>
</div>
<div class="ag-main">
<div class="columns ag-container">
<div class="column">
<div class="ag-info">
<p>Room Name:
<span id="channel"></span>
</p>
<p>Base Mode:
<span id="baseMode"></span>
</p>
<p>Attendee Mode:
<span id="attendeeMode"></span>
</p>
<p>Video Profile:
<span id="videoProfile"></span>
</p>
<p>Transcode:
<span id="transcode"></span>
</p>
<div class="ag-info-footer">
<a id="quickJoinBtn" class="ag-rounded button">
<span>Quick Join</span>
</a>
</div>
</div>
</div>
<div class="column">
<div class="ag-cards">
<section class="ag-cards-title">
<div class="ag-steps">
<div id="stepOne" class="step active">1</div>
<div id="stepTwo" class="step">2</div>
</div>
</section>
<section class="ag-card" id="videoCard">
<div class="ag-card-header">
<span>
<i class="ag-icon ag-icon-video-24"></i>
</span>
<span>Video</span>
</div>
<div class="ag-card-tip">
Move in front of the camera to check if it works.
</div>
<div class="ag-card-body">
<div class="initial">
<div class="select ag-select">
<select class="is-clipped ag-rounded" id="videoDevice">
</select>
</div>
<div class="ag-video-test">
<div id="videoItem">
</div>
<div class="field" id="enableVideoSwitch">
<input id="enableVideo" type="checkbox" name="enableVideo" class="switch is-rounded is-success">
<label for="enableVideo"></label>
</div>
</div>
</div>
<div class="result"></div>
</div>
</section>
<section class="ag-card" id="audioCard">
<div class="ag-card-header">
<span>
<i class="ag-icon ag-icon-audio-24"></i>
</span>
<span>Audio</span>
</div>
<div class="ag-card-tip">
Produce sounds to check if the mic works.
</div>
<div class="ag-card-body">
<div class="initial">
<div class="select ag-select">
<select class="is-clipped ag-rounded" id="audioDevice">
</select>
</div>
<div class="ag-audio-test">
<span>
<i class="ag-icon ag-icon-audio-24"></i>
</span>
<progress id="volume" class="progress is-small is-info" value="0" max="100"></progress>
</div>
</div>
<div class="result"></div>
</div>
</section>
<section class="ag-card" id="connectCard">
<div class="ag-card-header">
<span>
<i class="ag-icon ag-icon-connect-24"></i>
</span>
<span>Loss Measurement</span>
</div>
<div class="ag-card-body ag-connect-test">
<!-- <div id="testDuration"></div> -->
<!-- <progress id="testDuration" class="progress is-success" value="0" max="30"></progress> -->
<div class="ag-browser-test">
<img src="../../assets/images/ag-browser.png" alt="">
<p>Browser Compatibility:
<span id="compatibility"></span>
</p>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<div class="ag-footer">
<a class="ag-href left" target="_blank" href="https://webrtc.ventures">
<span>About WebRTC.Ventures</span>
</a>
</div>
<!-- modal/messages/notifications -->
</div>
<script src="https://cdn.agora.io/sdk/web/AgoraRTCSDK-2.5.0.js"></script>
<!-- inject -->
</body>
</html>