Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -127,7 +127,7 @@ if __name__ == '__main__':
|
|
127 |
elem_id=f"tts-input{i}")
|
128 |
tts_input2 = gr.Dropdown(label="Speaker", choices=speakers,
|
129 |
type="index", value=speakers[0])
|
130 |
-
tts_input3 = gr.Slider(label="Speed", value=
|
131 |
with gr.Accordion(label="Advanced Options", open=False):
|
132 |
phoneme_input = gr.Checkbox(value=False, label="Phoneme input")
|
133 |
to_phoneme_btn = gr.Button("Covert text to phoneme")
|
|
|
127 |
elem_id=f"tts-input{i}")
|
128 |
tts_input2 = gr.Dropdown(label="Speaker", choices=speakers,
|
129 |
type="index", value=speakers[0])
|
130 |
+
tts_input3 = gr.Slider(label="Speed", value=0.9, minimum=0.5, maximum=2, step=0.1)
|
131 |
with gr.Accordion(label="Advanced Options", open=False):
|
132 |
phoneme_input = gr.Checkbox(value=False, label="Phoneme input")
|
133 |
to_phoneme_btn = gr.Button("Covert text to phoneme")
|