-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.29 KB
/
Copy pathindex.html
File metadata and controls
70 lines (70 loc) · 2.29 KB
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
<!DOCTYPE html>
<html>
<head>
<title>File Index - bombbomb.github.io</title>
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: linear-gradient(120deg, #f7faff 0%, #d6ebff 100%);
margin: 0;
padding: 0;
}
.container {
max-width: 500px;
margin: 60px auto;
background: #fff;
box-shadow: 0 6px 32px rgba(0,0,0,0.09);
border-radius: 14px;
padding: 36px 28px;
}
h1 {
color: #1362e9;
font-size: 2rem;
margin-bottom: 1em;
text-align: center;
letter-spacing: 1px;
}
ul {
list-style: none;
padding-left: 0;
}
li {
margin: 16px 0;
}
a {
display: block;
color: #222;
background: #f2f6ff;
border-radius: 8px;
padding: 12px 16px;
font-size: 1.07rem;
text-decoration: none;
box-shadow: 0 2px 8px rgba(19,98,233,0.04);
transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
a:hover {
background: #1362e9;
color: #fff;
box-shadow: 0 4px 16px rgba(19,98,233,0.09);
}
</style>
</head>
<body>
<div class="container">
<h1>Shared Files</h1>
<ul>
<li><a href="walkthrough/original.mp4">Original Video</a></li>
<li><a href="walkthrough/audio.mp3">Extracted Audio</a></li>
<li><a href="walkthrough/avatar.mp4">Avatar-generated Chunk</a></li>
<li><a href="walkthrough/concat-simple.mp4">Simple Stitch</a></li>
<li><a href="walkthrough/phone.mp4">Video from Images</a></li>
<li><a href="walkthrough/concat-lipsync.mp4">Lip-sync Personalization </a></li>
<li><a href="walkthrough/filler-move.mp4">Filler Chunk</a></li>
<li><a href="walkthrough/filler-cough.mp4">Filler with Cough</a></li>
<li><a href="walkthrough/concat-filler.mp4">Personalization with filler</a></li>
<li><a href="walkthrough/concat-longer.mp4">Longer Lip-sync Example</a></li>
<!-- Add more files here -->
</ul>
</div>
</body>
</html>