Spaces:
Running
Running
Commit
·
48c3476
1
Parent(s):
f7ee315
Update app.py
Browse files
app.py
CHANGED
@@ -165,16 +165,10 @@ with gr.Blocks(css=css) as demo:
|
|
165 |
run_btn = gr.Button("Run", elem_id="run-btn")
|
166 |
with gr.Column():
|
167 |
output_video = gr.Video(format="mp4")
|
168 |
-
|
169 |
-
<p id="project-links" align="center">
|
170 |
-
<a href='https://dreamtalk-project.github.io/'><img src='https://img.shields.io/badge/Project-Page-Green'></a> <a href='https://arxiv.org/abs/2312.09767'><img src='https://img.shields.io/badge/Paper-Arxiv-red'></a> <a href='https://youtu.be/VF4vlE6ZqWQ'><img src='https://badges.aleen42.com/src/youtube.svg'></a>
|
171 |
-
</p>
|
172 |
-
<img src="https://github.com/ali-vilab/dreamtalk/raw/main/media/teaser.gif" style="margin: 0 auto;border-radius: 10px;" />
|
173 |
-
""")
|
174 |
-
|
175 |
run_btn.click(
|
176 |
fn = infer,
|
177 |
-
inputs = [audio_input
|
178 |
outputs = [output_video]
|
179 |
)
|
180 |
|
|
|
165 |
run_btn = gr.Button("Run", elem_id="run-btn")
|
166 |
with gr.Column():
|
167 |
output_video = gr.Video(format="mp4")
|
168 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
run_btn.click(
|
170 |
fn = infer,
|
171 |
+
inputs = [audio_input],
|
172 |
outputs = [output_video]
|
173 |
)
|
174 |
|