Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -15,8 +15,8 @@ def clone(text, audio):
|
|
15 |
return "./output.wav"
|
16 |
|
17 |
iface = gr.Interface(fn=clone,
|
18 |
-
inputs=[
|
19 |
-
outputs=gr.Audio(type='filepath'
|
20 |
title='Voice Clone',
|
21 |
description="""
|
22 |
by [Tony Assi](https://www.tonyassi.com/)
|
|
|
15 |
return "./output.wav"
|
16 |
|
17 |
iface = gr.Interface(fn=clone,
|
18 |
+
inputs=[gr.Textbox(label='Text'),gr.Audio(type='filepath', label='Voice reference audio file')],
|
19 |
+
outputs=gr.Audio(type='filepath'),
|
20 |
title='Voice Clone',
|
21 |
description="""
|
22 |
by [Tony Assi](https://www.tonyassi.com/)
|