Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -41,13 +41,13 @@ with gr.Blocks() as demo:
|
|
41 |
""")
|
42 |
with gr.Row():
|
43 |
with gr.Column():
|
44 |
-
image_in = gr.Image(type="filepath")
|
45 |
with gr.Column():
|
46 |
-
voice = gr.Audio(type="filepath")
|
47 |
text = gr.Textbox(label="text")
|
48 |
submit_btn = gr.Button('Submit')
|
49 |
with gr.Column():
|
50 |
-
video_o = gr.Video()
|
51 |
submit_btn.click(
|
52 |
fn = pipe,
|
53 |
inputs = [
|
|
|
41 |
""")
|
42 |
with gr.Row():
|
43 |
with gr.Column():
|
44 |
+
image_in = gr.Image(label="Portrait IN", type="filepath", value="einstein.jpg")
|
45 |
with gr.Column():
|
46 |
+
voice = gr.Audio(type="filepath", label="Upload or Record Speaker audio (Optional)")
|
47 |
text = gr.Textbox(label="text")
|
48 |
submit_btn = gr.Button('Submit')
|
49 |
with gr.Column():
|
50 |
+
video_o = gr.Video(label="Video result")
|
51 |
submit_btn.click(
|
52 |
fn = pipe,
|
53 |
inputs = [
|