Update app.py
Browse files
app.py
CHANGED
|
@@ -15,5 +15,7 @@ def greet(source, target):
|
|
| 15 |
)
|
| 16 |
return "output.wav"
|
| 17 |
|
| 18 |
-
demo = gr.Interface(fn=greet, inputs=["
|
| 19 |
-
|
|
|
|
|
|
|
|
|
| 15 |
)
|
| 16 |
return "output.wav"
|
| 17 |
|
| 18 |
+
demo = gr.Interface(fn=greet, inputs=[gr.Audio(value="kratos.wav", type="filepath"),
|
| 19 |
+
gr.Audio(value="nikole_kidman.wav", type="filepath")],
|
| 20 |
+
outputs=gr.Audio(type="filepath"))
|
| 21 |
+
demo.launch()
|