Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -71,10 +71,14 @@ with gr.Blocks() as demo:
|
|
71 |
label="How would you like to upload your audio?")
|
72 |
audio_input_mic = gr.Audio(label="Voice to clone", source="microphone", type="filepath", visible=True)
|
73 |
audio_input_file = gr.Audio(label="Voice to clone", type="filepath", visible=False)
|
74 |
-
lan_input = gr.Radio(label="Language", choices=["en", "
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
|
|
|
|
|
|
78 |
with gr.Column():
|
79 |
audio_output = gr.Audio(label="Output")
|
80 |
|
|
|
71 |
label="How would you like to upload your audio?")
|
72 |
audio_input_mic = gr.Audio(label="Voice to clone", source="microphone", type="filepath", visible=True)
|
73 |
audio_input_file = gr.Audio(label="Voice to clone", type="filepath", visible=False)
|
74 |
+
lan_input = gr.Radio(label="Language", choices=["en", "fr-fr", "pt-br", "zh-CN", "de", "es"], value="en")
|
75 |
+
gr.Markdown(warming_text)
|
76 |
+
|
77 |
+
with gr.Row():
|
78 |
+
with gr.Column():
|
79 |
+
btn_clear = gr.Button("Clear")
|
80 |
+
with gr.Column():
|
81 |
+
btn = gr.Button("Submit", variant="primary")
|
82 |
with gr.Column():
|
83 |
audio_output = gr.Audio(label="Output")
|
84 |
|