Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -170,8 +170,8 @@ if __name__ == '__main__':
|
|
170 |
value=0.6,
|
171 |
interactive=True,
|
172 |
)
|
173 |
-
tts_mode = gr.Checkbox(label="tts (use edge-tts as input)", value=False)
|
174 |
-
tts_text = gr.Textbox(visible=False,label="TTS text (100 words limitation)" if limitation else "TTS text")
|
175 |
tts_voice = gr.Dropdown(label="Edge-tts speaker", choices=voices, visible=False, allow_custom_value=False, value="en-US-AnaNeural-Female")
|
176 |
vc_submit = gr.Button("Generate", variant="primary")
|
177 |
with gr.Column():
|
|
|
170 |
value=0.6,
|
171 |
interactive=True,
|
172 |
)
|
173 |
+
tts_mode = gr.Checkbox(label="tts (use edge-tts as input)", value=False, visible=False)
|
174 |
+
tts_text = gr.Textbox(visible=False, label="TTS text (100 words limitation)" if limitation else "TTS text")
|
175 |
tts_voice = gr.Dropdown(label="Edge-tts speaker", choices=voices, visible=False, allow_custom_value=False, value="en-US-AnaNeural-Female")
|
176 |
vc_submit = gr.Button("Generate", variant="primary")
|
177 |
with gr.Column():
|