Spaces:
Running
on
Zero
Running
on
Zero
Update hf_gradio_app.py
Browse files- hf_gradio_app.py +3 -1
hf_gradio_app.py
CHANGED
@@ -191,6 +191,8 @@ def generate(input_video, input_audio, seed, progress=gr.Progress(track_tqdm=Tru
|
|
191 |
with gr.Blocks(analytics_enabled=False) as demo:
|
192 |
with gr.Column():
|
193 |
gr.Markdown("# MEMO: Memory-Guided Diffusion for Expressive Talking Video Generation")
|
|
|
|
|
194 |
gr.HTML("""
|
195 |
<div style="display:flex;column-gap:4px;">
|
196 |
<a href="https://github.com/memoavatar/memo">
|
@@ -214,7 +216,7 @@ with gr.Blocks(analytics_enabled=False) as demo:
|
|
214 |
with gr.Row():
|
215 |
with gr.Column():
|
216 |
input_video = gr.Image(label="Upload Input Image", type="filepath")
|
217 |
-
input_audio = gr.Audio(label="Upload Input Audio", type="filepath"
|
218 |
seed = gr.Number(label="Seed (0 for Random)", value=0, precision=0)
|
219 |
with gr.Column():
|
220 |
video_output = gr.Video(label="Generated Video")
|
|
|
191 |
with gr.Blocks(analytics_enabled=False) as demo:
|
192 |
with gr.Column():
|
193 |
gr.Markdown("# MEMO: Memory-Guided Diffusion for Expressive Talking Video Generation")
|
194 |
+
gr.Markdown("Note: On fffiloni's shared UI, audio length is trimmed to max 4 seconds, so everyone can get a taste without to many wait time in queue.")
|
195 |
+
gr.Markdown("Duplicate the space to skip the queue and enjoy full length capacity.")
|
196 |
gr.HTML("""
|
197 |
<div style="display:flex;column-gap:4px;">
|
198 |
<a href="https://github.com/memoavatar/memo">
|
|
|
216 |
with gr.Row():
|
217 |
with gr.Column():
|
218 |
input_video = gr.Image(label="Upload Input Image", type="filepath")
|
219 |
+
input_audio = gr.Audio(label="Upload Input Audio", type="filepath")
|
220 |
seed = gr.Number(label="Seed (0 for Random)", value=0, precision=0)
|
221 |
with gr.Column():
|
222 |
video_output = gr.Video(label="Generated Video")
|