Spaces:
Running
on
L40S
Running
on
L40S
Update app.py
Browse files
app.py
CHANGED
@@ -268,6 +268,9 @@ with gr.Blocks(title="MultiTalk Inference") as demo:
|
|
268 |
|
269 |
submit_btn = gr.Button("Generate")
|
270 |
|
|
|
|
|
|
|
271 |
gr.Examples(
|
272 |
examples = [
|
273 |
["A woman sings passionately in a dimly lit studio.", "examples/single/single1.png", "examples/single/1.wav", None, 6],
|
@@ -280,9 +283,6 @@ with gr.Blocks(title="MultiTalk Inference") as demo:
|
|
280 |
cache_mode = "lazy"
|
281 |
)
|
282 |
|
283 |
-
with gr.Column(scale=3):
|
284 |
-
output_video = gr.Video(label="Generated Video")
|
285 |
-
|
286 |
submit_btn.click(
|
287 |
fn=infer,
|
288 |
inputs=[prompt_input, image_input, audio_input_spk1, sample_steps],
|
|
|
268 |
|
269 |
submit_btn = gr.Button("Generate")
|
270 |
|
271 |
+
with gr.Column(scale=3):
|
272 |
+
output_video = gr.Video(label="Generated Video")
|
273 |
+
|
274 |
gr.Examples(
|
275 |
examples = [
|
276 |
["A woman sings passionately in a dimly lit studio.", "examples/single/single1.png", "examples/single/1.wav", None, 6],
|
|
|
283 |
cache_mode = "lazy"
|
284 |
)
|
285 |
|
|
|
|
|
|
|
286 |
submit_btn.click(
|
287 |
fn=infer,
|
288 |
inputs=[prompt_input, image_input, audio_input_spk1, sample_steps],
|