-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·383 lines (351 loc) · 13.7 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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
---
layout: default
title:
subtitle: MuseV Infinite-length and High Fidelity Virtual Human Video Generation with Visual Conditioned Parallel Denoising
---
<h3 id="subtitle" style="text-align: center;">MuseV: Infinite-length and High Fidelity Virtual Human Video Generation with Visual Conditioned Parallel Denoising</h3>
<div class="post">
<p><font size=5>
Zhiqiang Xia <sup>*</sup>,
Zhaokang Chen<sup>*</sup>,
Bin Wu<sup>†</sup>,
Chao Li,
Kwok-Wai Hung,
Chao Zhan,
Yingjie He,
Wenjiang Zhou
(<sup>*</sup>co-first author, <sup>†</sup>Corresponding Author, [email protected])
</font></p>
<p><strong><a href="https://github.com/TMElyralab/MuseV">Github</a></strong> <strong><a href="https://huggingface.co/TMElyralab/MuseV">Huggingface</a></strong> <strong><a href="https://huggingface.co/spaces/AnchorFake/MuseVDemo">HuggingfaceSpace</a></strong> <strong>Technical report (coming soon)</strong></p>
<style>
/* Add styling for the navigation bar */
.navbar {
background-color: #333;
height: 100%;
left: 0; /* Start on the screen */
overflow: hidden;
position: fixed;
top: 0;
transition: 0.3s; /* Smooth transition */
width: 200px;
z-index: 100;
}
.navbar a,
.navbar button {
color: white;
display: block;
padding: 14px 16px;
text-align: left;
text-decoration: none;
background: none;
border: none;
font-family: inherit;
font-size: inherit;
cursor: pointer;
}
.navbar a:hover,
.navbar button:hover {
background-color: #ddd;
color: black;
}
/* Hide the navbar when the body has the navbar-closed class */
body.navbar-closed .navbar {
left: -200px;
}
</style>
<!-- Add the navigation bar -->
<div class="navbar" id="navbar">
<!-- Add a button to toggle the navbar -->
<!-- <button onclick="toggleNavbar()">Close Navbar</button> -->
</div>
<script>
function toggleNavbar() {
// Add or remove the navbar-closed class
document.body.classList.toggle('navbar-closed');
}
</script>
<h2 id="What is MuseV">What is MuseV</h2>
<p><code>MuseV</code> is a diffusion-based virtual human video generation framework, which</p>
<ol>
<li>supports <strong>infinite length</strong> generation using a novel <strong>Visual Conditioned Parallel Denoising scheme</strong>.</li>
<li>checkpoint available for virtual human video generation trained on human dataset.</li>
<li>supports Image2Video, Text2Image2Video, Video2Video.</li>
<li>compatible with the <strong>Stable Diffusion ecosystem</strong>, including <code>base_model</code>, <code>lora</code>, <code>controlnet</code>, etc.</li>
<li>supports multi-reference image technology, including <code>IPAdapter</code>, <code>ReferenceOnly</code>, <code>ReferenceNet</code>, <code>IPAdapterFaceID</code>.</li>
<li>training codes (coming very soon).</li>
</ol>
<h2 id="Overview of model structure" >Overview of model structure</h2>
<img src="/MuseV_Page/assets/images/musev_structure.png" width="986" height="703" alt="Pipeline">
<h2 id="Overview of parallel denoising" >Parallel Denoising</h2>
<img src="/MuseV_Page/assets/images/parallel_denoise.png" width="1000" height="290" alt="Pipeline">
<style>
img {
width: auto;
height: auto;
max-width: 80%;
max-height: 100%;
display: block;
margin: auto;
}
video {
width: auto;
height: auto;
max-width: 80%;
max-height: 100%;
display: block;
margin: auto;
}
</style>
<h2 id="Long Video Generation" >Long Video Genereation</h2>
<p></p>
<table border="0"> <!-- 表格边框设置为1 -->
<tr> <!-- 表格的一行 -->
<th width="50%" >Source Video</th> <!-- 表头单元格 -->
<th width="50%">Output Video</th> <!-- 表头单元格 -->
</tr>
</table>
<table border="0"> <!-- 表格边框设置为1 -->
<tr>
<td>
<video src="/MuseV_Page/assets/demo_videos/bath_song_lite.mp4" width="200" height="900" controls></video>
</td>
<td>
<video src="/MuseV_Page/assets/demo_videos/bath_lite.mp4" width="800" height="900" controls></video>
</td>
</tr>
<tr>
<td>
<video src="/MuseV_Page/assets/demo_videos/dance1.mp4" width="200" height="900" controls></video>
</td>
<td>
<video src="/MuseV_Page/assets/demo_videos/video1.mp4" width="800" height="900" controls></video>
</td>
</tr>
</table>
<h2 id="Text2Video" >Text2Video Genereation</h2>
<p></p>
<table border="0"> <!-- 表格边框设置为1 -->
<tr> <!-- 表格的一行 -->
<td width="40%">image</td>
<td width="40%">video </td>
<td width="20%">prompt</td>
</tr>
</table>
<table border="0"> <!-- 表格边框设置为1 -->
<tr>
<td>
<img src=/MuseV_Page/assets/images/yongen.jpeg width="400">
</td>
<td >
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/732cf1fd-25e7-494e-b462-969c9425d277" width="100" controls preload></video>
</td>
<td>(masterpiece, best quality, highres:1),(1boy, solo:1),(eye blinks:1.8),(head wave:1.3)
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/jinkesi2.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/62b533d3-95f3-48db-889d-75dde1ad04b7" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1),(1girl, solo:1),(beautiful face,
soft skin, costume:1),(eye blinks:{eye_blinks_factor}),(head wave:1.3)
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/seaside4.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/9b75a46c-f4e6-45ef-ad02-05729f091c8f" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1), peaceful beautiful sea scene
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/seaside_girl.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/d0f3b401-09bf-4018-81c3-569ec24a4de9" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1), peaceful beautiful sea scene
</td>
</tr>
<!-- guitar -->
<tr>
<td>
<img src=/MuseV_Page/assets/images/boy_play_guitar.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/61bf955e-7161-44c8-a498-8811c4f4eb4f" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1), playing guitar
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/girl_play_guitar2.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/40982aa7-9f6a-4e44-8ef6-3f185d284e6a" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1), playing guitar
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/boy_play_guitar2.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/69ea9d0c-5ed0-44b9-bca9-a4829c8d8b68" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1), playing guitar
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/girl_play_guitar4.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/d242e8a4-08ab-474f-b4a8-b718780d2991" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1), playing guitar
</td>
</tr>
<!-- famous people -->
<tr>
<td>
<img src=/MuseV_Page/assets/images/dufu.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/28294baa-b996-420f-b1fb-046542adf87d" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1),(1man, solo:1),(eye blinks:1.8),(head wave:1.3),Chinese ink painting style
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/Mona_Lisa.jpg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/1ce11da6-14c6-4dcd-b7f9-7a5f060d71fb" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1),(1girl, solo:1),(beautiful face,
soft skin, costume:1),(eye blinks:{eye_blinks_factor}),(head wave:1.3)
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/Portrait-of-Dr.-Gachet.jpg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/4072410a-ecea-4ee5-a9b4-735f9f462d51" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1),(1man, solo:1),(eye blinks:1.8),(head wave:1.3)
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/Self-Portrait-with-Cropped-Hair.jpg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/5148beda-a1e1-44f0-ad84-2fb99ad73a11" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1),(1man, solo:1),(eye blinks:1.8),(head wave:1.3), animate
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/The-Laughing-Cavalier.jpg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/df1c5943-15a3-41f5-afe7-e7497c81836d" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1),(1girl, solo:1),(beautiful face,
soft skin, costume:1),(eye blinks:{eye_blinks_factor}),(head wave:1.3)
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/waterfall4.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/852daeb6-6b58-4931-81f9-0dddfa1b4ea5" width="100" controls preload></video>
</td>
<td>
(masterpiece, best quality, highres:1), peaceful beautiful waterfall, an
endless waterfall
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/river.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/d5cb2798-b5ce-497a-a058-ae63d664028e" width="100" controls preload></video>
</td>
<td>(masterpiece, best quality, highres:1), peaceful beautiful river
</td>
</tr>
<tr>
<td>
<img src=/MuseV_Page/assets/images/seaside2.jpeg width="400">
</td>
<td>
<video src="https://github.com/TMElyralab/MuseV/assets/163980830/4a4d527a-6203-411f-afe9-31c992d26816" width="100" controls preload></video>
</td>
<td>(masterpiece, best quality, highres:1), peaceful beautiful sea scene
</td>
</tr>
</table>
<h2 id="Video2Video" >Video2Video Genereation</h2>
<p></p>
<table border="0"> <!-- 表格边框设置为1 -->
<tr> <!-- 表格的一行 -->
<th style="width: 512px;">Image</th> <!-- 表头单元格 -->
<th style="width: 512px;">Video</th> <!-- 表头单元格 -->
</tr>
</table>
<table border="0"> <!-- 表格边框设置为1 -->
<tr>
<td>
<img src="/MuseV_Page/assets/images/cyber_girl.png" width="512" height="900" alt="Image 3">
</td>
<td>
<img src="/MuseV_Page/assets/images/spark_girl.png" width="512" height="900" alt="Image 3">
</td>
<td>
<video src="/MuseV_Page/assets/demo_videos/video1_plus.mp4" width="1000" height="900" controls></video>
</td>
</tr>
</table>
<script>
// Get the navbar element
const navbar = document.getElementById("navbar");
// Get all h1 elements on the page
const headings = document.getElementsByTagName("h2");
// Loop through all h1 elements and create a link for each one
for (const heading of headings) {
const link = document.createElement("a");
link.href = "#" + heading.id;
link.textContent = heading.textContent;
navbar.appendChild(link);
}
</script>
</body>
</html>
</div>