forked from streaming-university/QoMEX23-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (84 loc) · 3.49 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
<!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: 8px">
<label for="video">Video:</label>
<select id="video-select" style="margin-left: 62px; width: 160px">
<option value="bbb" selected>BBB</option>
<option value="motorbike">motorbike</option>
<option value="no-event">no-event</option>
</select>
</div>
<div style="margin-bottom: 8px">
<label for="quality">QP:</label>
<select id="quality-select" style="margin-left: 82px; width: 200px">
<option value="50" selected>50 (Lowest Quality)</option>
<option value="40">40</option>
<option value="30">30</option>
</select>
</div>
<div>
<label for="compare">Compare with:</label>
<select id="comparison-select" style="margin-left: 3px; width: 300px">
<option value="original" selected>Unspliced Original Version</option>
<option value="reference">Highest Quality (QP 20)</option>
</select>
</div>
</div>
<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>
<div id="video-control-panel">
<div id="custom-seekbar" class="mb-4">
<span></span>
</div>
<div>
<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>
</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>