Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -71,8 +71,13 @@ def clone(text, input_file, language, url=None):
|
|
71 |
|
72 |
iface = gr.Interface(
|
73 |
fn=clone,
|
74 |
-
inputs=[
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
76 |
title='Voice Clone',
|
77 |
description="""
|
78 |
by [Angetyde](https://youtube.com/@Angetyde) and [Tony Assi](https://www.tonyassi.com/)
|
|
|
71 |
|
72 |
iface = gr.Interface(
|
73 |
fn=clone,
|
74 |
+
inputs=[
|
75 |
+
gr.inputs.Textbox(label="Text"),
|
76 |
+
gr.inputs.File(label="Input File", file_types=[".zip", *AUDIO_FORMATS]),
|
77 |
+
gr.inputs.Dropdown(choices=LANGUAGES, label="Language"),
|
78 |
+
gr.inputs.Textbox(label="URL", lines=1)
|
79 |
+
],
|
80 |
+
outputs=gr.outputs.Audio(type='filepath'),
|
81 |
title='Voice Clone',
|
82 |
description="""
|
83 |
by [Angetyde](https://youtube.com/@Angetyde) and [Tony Assi](https://www.tonyassi.com/)
|