-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
185 lines (179 loc) · 7.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Auxiliary I-Frame Splicing - QoMEX'23 Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="style.css">
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
>
</head>
<body>
<div id="page-container">
<div id="content">
<h1>Auxiliary I-Frame Splicing - QoMEX'23 Demo</h1>
<p class="m-0 fst-italic">
You need an HEVC compatible browser to play the videos.
<a href="https://caniuse.com/hevc" target="_blank" rel="noopener">Check here</a> for more information.
</p>
<div id="options-container">
<div style="margin-bottom: 4px">
<label for="video-select">Video:</label>
<select id="video-select" style="margin-left: 62px; width: 220px">
<option value="bbb" selected>BBB (4K)</option>
<option value="motorbike">motorbike (1920 x 1080)</option>
<option value="no-event">no-event (720 x 576)</option>
</select>
</div>
<div style="margin-bottom: 4px">
<label for="quality-select">QP:</label>
<select id="quality-select" style="margin-left: 82px; width: 220px">
<option value="50" selected>50 (Lowest Quality)</option>
<option value="40">40</option>
<option value="30">30</option>
</select>
</div>
<div>
<label for="comparison-select">Compare with:</label>
<select id="comparison-select" style="margin-left: 3px; width: 220px">
<option value="original" selected>Unspliced Original Version</option>
<option value="reference">Highest Quality (QP 20)</option>
</select>
</div>
</div>
<h2>Videos</h2>
<div id="videos-container">
<div>
<label>Auxiliary I-Frame Splicing</label>
<video id="video1" width="320" height="240">
Your browser does not support the video tag.
</video>
<div id="loading-text1">Loading video...</div>
</div>
<div>
<label id="video2-text">Original Video</label>
<video id="video2" width="320" height="240">
Your browser does not support the video tag.
</video>
<div id="loading-text2">Loading video...</div>
</div>
</div>
<label id="video-resolution" class="mt-3 mb-3">Auxiliary I-Frame Splicing</label>
<div id="video-control-panel">
<div id="custom-seekbar" class="mb-3">
<span></span>
</div>
<div class="mb-4">
<button id="start-stop-btn" type="button" class="btn btn-primary mr-4">Start</button>
<button id="restart-btn" type="button" class="btn btn-secondary mr-4">Restart</button>
<button id="mute-btn" type="button" class="btn btn-warning mr-4">Mute</button>
</div>
</div>
<h2>Frames</h2>
<div id="frames-container">
<div>
<label id="frame1-text">Auxiliary I-Frame Splicing</label>
<img id="frame1" alt="Auxiliary I-Frame Spliced frame" src=""/>
</div>
<div>
<label id="frame2-text">Original Video</label>
<img id="frame2" alt="Original Video frame" src=""/>
</div>
</div>
<div id="frame-control-panel">
<button id="previous-btn" type="button" class="btn btn-secondary mr-4" disabled>Previous</button>
<button id="next-btn" type="button" class="btn btn-primary mr-4">Next</button>
</div>
<div class="results-table">
<table class="w-75 border border-1">
<tr class="border-bottom border-3 border-secondary">
<th>Content</th>
<th>QP</th>
<th>PSNR score increase (%)</th>
<th>VMAF score increase (%)</th>
<th>Data saving compared to High Quality (QP 20) (%)</th>
<th>Extra data consumed compared to Unspliced Version (QP 50) (%)</th>
</tr>
<tr>
<th rowspan="3" style="border: 1px solid #ddd;"><i>BBB</i></th>
<td>50</td>
<td>26.77</td>
<td>105.78</td>
<td>44.44</td>
<td>1277.96</td>
</tr>
<tr>
<td>40</td>
<td>25.41</td>
<td>22.28</td>
<td>43.40</td>
<td>421.78</td>
</tr>
<tr>
<td>30</td>
<td>19.18</td>
<td>4.09</td>
<td>37.28</td>
<td>99.43</td>
</tr>
<tr class="border-top border-2 border-secondary">
<th rowspan="3" style="border: 1px solid #ddd;"><i>motorbike</i></th>
<td>50</td>
<td>19.24</td>
<td>78.72</td>
<td>85.00</td>
<td>2515.98</td>
</tr>
<tr>
<td>40</td>
<td>18.25</td>
<td>15.61</td>
<td>84.32</td>
<td>396.75</td>
</tr>
<tr>
<td>30</td>
<td>12.14</td>
<td>1.43</td>
<td>75.34</td>
<td>38.52</td>
</tr>
<tr class="border-top border-2 border-secondary">
<th rowspan="3" style="border: 1px solid #ddd;"><i>no-event</i></th>
<td>50</td>
<td>19.99</td>
<td>72.68</td>
<td>87.46</td>
<td>1345.3</td>
</tr>
<tr>
<td>40</td>
<td>15.39</td>
<td>10.36</td>
<td>86.25</td>
<td>278.69</td>
</tr>
<tr>
<td>30</td>
<td>11.30</td>
<td>0.69</td>
<td>71.80</td>
<td>27.84</td>
</tr>
</table>
</div>
</div>
<footer>
<p>
Auxiliary I-Frame Splicing - <span class="fw-bolder">Ozyegin University</span> & <span class="fw-bolder">Nokia</span>,
2023
</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>