-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
191 lines (162 loc) · 6.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="WebCodecs code samples">
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1, maximum-scale=1">
<meta itemprop="description" content="Client-side WebCodecs code samples">
<meta itemprop="name" content="WebCodecs code samples">
<meta name="mobile-web-app-capable" content="yes">
<meta id="theme-color" name="theme-color" content="#ffffff">
<base target="_blank">
<title>WebTransport Echo with WebCodecs in Worker + RVFC</title>
<link rel="stylesheet" href="css/main.css">
<style>
body, html {
height: 100%;
}
button {
margin: 0 10px 20px 0;
min-width: 90px;
}
div#buttons {
margin: 0 0 1em 0;
}
div#container {
max-width: 100%;
}
#errormessage {
display: none;
font-size: 300%;
}
#videoblock {
display: none;
}
p#dimensions {
height: 1em;
margin: 0 0 1.5em 0;
}
video {
background: none;
height: auto;
width: auto;
}
</style>
</head>
<body>
<div>
<h2>WebTransport Echo with WebCodecs in Worker + RVFC</h2>
<div class="input-line">
<label for="url">URL:</label>
<input type="text" name="url" id="url" size="40"
value="https://webrtc.internaut.com:6161/echo">
</div>
</div>
<textarea id="vLog" style="width: 980px; height: 480px"></textarea>
<br/></br>
<div id="rateInput">
<label for="rate">bitrate: </label>
<input type="text" name="rate" id="rate" minlength=2 maxlength=8 size=8
value=300000>
</div>
<div id="frameInput">
<label for="framer">framerate: </label>
<input type="text" name="framer" id="framer" minlength=2 maxlength=3 size=3
value=30>
</div>
<div id="keyInput">
<label for="keygap">keyframe interval: </label>
<input type="text" name="keygap" id="keygap" minlength=1 maxlength=4 size=4
value=3000>
</div>
<div id="codecButtons">
<p>Codec:</p>
<input type="radio" id="H264" name="codec" value="H264" onchange="getCodecValue(this)">
<label for="H264">H.264</label><br>
<input type="radio" id="H265" name="codec" value="H265" onchange="getCodecValue(this)">
<label for="H265">H.265</label><br>
<input type="radio" id="VP8" name="codec" value="VP8" checked="checked" onchange="getCodecValue(this)">
<label for="VP8">VP8</label><br>
<input type="radio" id="VP9" name="codec" value="VP9" onchange="getCodecValue(this)">
<label for="VP9">VP9</label><br>
<input type="radio" id="AV1" name="codec" value="AV1" onchange="getCodecValue(this)">
<label for="AV1">AV1</label><br>
</div>
<div id="encHwButtons">
<p>Encoder Hardware Acceleration Preference:</p>
<input type="radio" id="encHw" name="encHwAccel" value="prefer-hardware" onchange="getEncHwValue(this)">
<label for="encHw">Prefer Hardware</label><br>
<input type="radio" id="encSw" name="encHwAccel" value="prefer-software" onchange="getEncHwValue(this)">
<label for="encSw">Prefer Software</label><br>
<input type="radio" id="encNo-pref" name="encHwAccel" value="no-preference" checked="checked" onchange="getEncHwValue(this)">
<label for="encNo-pref">No Preference</label><br>
</div>
<div id="decHwButtons">
<p>Decoder Hardware Acceleration Preference:</p>
<input type="radio" id="decHw" name="decHwAccel" value="prefer-hardware" onchange="getDecHwValue(this)">
<label for="decHw">Prefer Hardware</label><br>
<input type="radio" id="decSw" name="decHwAccel" value="prefer-software" onchange="getDecHwValue(this)">
<label for="decSw">Prefer Software</label><br>
<input type="radio" id="decNo-pref" name="decHwAccel" value="no-preference" checked="checked" onchange="getDecHwValue(this)">
<label for="decNo-pref">No Preference</label><br>
</div>
<div id="prefButtons">
<p>Latency goal:</p>
<input type="radio" id="realtime" name="latencyPref" value="realtime" checked="checked" onchange="getPrefValue(this)">
<label for="realtime">realtime</label><br>
<input type="radio" id="quality" name="latencyPref" value="quality" onchange="getPrefValue(this)">
<label for="quality">quality</label><br>
</div>
<div id="bitButtons">
<p>Bitrate mode:</p>
<input type="radio" id="constant" name="bitPref" value="constant" onchange="getBitPrefValue(this)">
<label for="constant">constant</label><br>
<input type="radio" id="variable" name="bitPref" value="variable" checked="checked" onchange="getBitPrefValue(this)">
<label for="variable">variable</label><br>
</div>
<div id="modeButtons">
<p>Scalability Mode:</p>
<input type="radio" id="L1T1" name="mode" value="L1T1" onchange="getModeValue(this)">
<label for="L1T1">L1T1</label><br>
<input type="radio" id="L1T2" name="mode" value="L1T2" onchange="getModeValue(this)">
<label for="L1T2">L1T2</label><br>
<input type="radio" id="L1T3" name="mode" value="L1T3" checked="checked" onchange="getModeValue(this)">
<label for="L1T3">L1T3</label><br>
</div>
<div id="resButtons">
<p>Resolution:</p>
<input type="radio" id="qvga" name="resolution" value="qvga" checked="checked" onchange="getResValue(this)">
<label for="qvga">QVGA</label><br>
<input type="radio" id="vga" name="resolution" value="vga" onchange="getResValue(this)">
<label for="vga">VGA</label><br>
<input type="radio" id="hd" name="resolution" value="hd" onchange="getResValue(this)">
<label for="hd">HD</label><br>
<input type="radio" id="full-hd" name="resolution" value="full-hd" onchange="getResValue(this)">
<label for="full-hd">Full HD</label><br>
<input type="radio" id="tv4K" name="resolution" value="tv4K" onchange="getResValue(this)">
<label for="tv4K">Television 4k (3840x2160)</label><br>
<input type="radio" id="cinema4K" name="resolution" value="cinema4K" onchange="getResValue(this)">
<label for="cinema4K">Cinema 4K (4096x2160)</label><br>
<input type="radio" id="eightK" name="resolution" value="eightK" onchange="getResValue(this)">
<label for="eightK">8K</label><br>
</div>
<div id="chart_div" style="width: 900px; height: 500px;"></div>
<div id="chart2_div" style="width: 900px; height: 500px;"></div>
<div id="chart3_div" style="width: 900px; height: 500px;"></div>
<div id="chart4_div" style="width: 900px; height: 500px;"></div>
<div class="select">
<label for="videoSource">Video source: </label><select id="videoSource"></select>
</div>
<video height="50%" id="inputVideo" autoplay muted></video>
<br/>Local Video</br>
<br/></br>
<video height="50%" id="outputVideo" autoplay muted></video>
<br/>Encoded (and Decoded) Video via the WT Echo Server</br>
<br/></br>
<button id="connect">Start</button>
<button id="stop">Stop</button>
<br/></br>
<script src="https://cdn.plot.ly/plotly-2.18.2.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>