Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -67,11 +67,11 @@ with gr.Blocks() as demo:
|
|
67 |
with gr.Row():
|
68 |
with gr.Column():
|
69 |
text_input = gr.Textbox(label="Input the text", value="", max_lines=3)
|
|
|
70 |
radio = gr.Radio(["mic", "file"], value="mic",
|
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():
|
|
|
67 |
with gr.Row():
|
68 |
with gr.Column():
|
69 |
text_input = gr.Textbox(label="Input the text", value="", max_lines=3)
|
70 |
+
lan_input = gr.Radio(label="Language", choices=["en", "fr-fr", "pt-br", "zh-CN", "de", "es"], value="en")
|
71 |
radio = gr.Radio(["mic", "file"], value="mic",
|
72 |
label="How would you like to upload your audio?")
|
73 |
audio_input_mic = gr.Audio(label="Voice to clone", source="microphone", type="filepath", visible=True)
|
74 |
audio_input_file = gr.Audio(label="Voice to clone", type="filepath", visible=False)
|
|
|
75 |
gr.Markdown(warming_text)
|
76 |
|
77 |
with gr.Row():
|