Spaces:
Sleeping
Sleeping
Commit
·
4717688
1
Parent(s):
55f2e5a
Update app.py to rename interface from 'LatentSync' to 'SoundImage' and modify the associated description for the new model.
Browse files
app.py
CHANGED
@@ -88,29 +88,12 @@ def create_args(
|
|
88 |
|
89 |
|
90 |
# Create Gradio interface
|
91 |
-
with gr.Blocks(title="
|
92 |
gr.Markdown(
|
93 |
"""
|
94 |
-
#
|
95 |
-
Upload a video and audio file to process with
|
96 |
-
|
97 |
-
<div align="center">
|
98 |
-
<strong>Chunyu Li1,2 Chao Zhang1 Weikai Xu1 Jinghui Xie1,† Weiguo Feng1
|
99 |
-
Bingyue Peng1 Weiwei Xing2,†</strong>
|
100 |
-
</div>
|
101 |
-
|
102 |
-
<div align="center">
|
103 |
-
<strong>1ByteDance 2Beijing Jiaotong University</strong>
|
104 |
-
</div>
|
105 |
-
|
106 |
-
<div style="display:flex;justify-content:center;column-gap:4px;">
|
107 |
-
<a href="https://github.com/bytedance/LatentSync">
|
108 |
-
<img src='https://img.shields.io/badge/GitHub-Repo-blue'>
|
109 |
-
</a>
|
110 |
-
<a href="https://arxiv.org/pdf/2412.09262">
|
111 |
-
<img src='https://img.shields.io/badge/ArXiv-Paper-red'>
|
112 |
-
</a>
|
113 |
-
</div>
|
114 |
"""
|
115 |
)
|
116 |
|
|
|
88 |
|
89 |
|
90 |
# Create Gradio interface
|
91 |
+
with gr.Blocks(title="SoundImage") as demo:
|
92 |
gr.Markdown(
|
93 |
"""
|
94 |
+
# SoundImage: Audio Conditioned Video Generation
|
95 |
+
Upload a video and audio file to process with SoundImage model.
|
96 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
"""
|
98 |
)
|
99 |
|