Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -298,7 +298,7 @@ with gr.Blocks(theme=gr.themes.Base(primary_hue="pink", secondary_hue="rose"), t
|
|
298 |
button_tts.click(text_to_speech_edge, inputs=[text_tts, dropdown_tts], outputs=[sound_gui])
|
299 |
|
300 |
with gr.Accordion("Settings", open=False):
|
301 |
-
pitch_algo_conf = gr.Radio(choices=PITCH_ALGO_OPT,value=PITCH_ALGO_OPT[4],label="Pitch algorithm",visible=True,interactive=True) # Dropdown is 🤡
|
302 |
with gr.Rowe(equal_height=True):
|
303 |
pitch_lvl_conf = gr.Slider(label="Pitch level (lower -> 'male' while higher -> 'female')",minimum=-24,maximum=24,step=1,value=0,visible=True,interactive=True,)
|
304 |
index_inf_conf = gr.Slider(minimum=0,maximum=1,label="Index influence -> How much accent is applied",value=0.75,)
|
|
|
298 |
button_tts.click(text_to_speech_edge, inputs=[text_tts, dropdown_tts], outputs=[sound_gui])
|
299 |
|
300 |
with gr.Accordion("Settings", open=False):
|
301 |
+
pitch_algo_conf = gr.Radio(choices=[PITCH_ALGO_OPT],value=PITCH_ALGO_OPT[4],label="Pitch algorithm",visible=True,interactive=True) # Dropdown is 🤡
|
302 |
with gr.Rowe(equal_height=True):
|
303 |
pitch_lvl_conf = gr.Slider(label="Pitch level (lower -> 'male' while higher -> 'female')",minimum=-24,maximum=24,step=1,value=0,visible=True,interactive=True,)
|
304 |
index_inf_conf = gr.Slider(minimum=0,maximum=1,label="Index influence -> How much accent is applied",value=0.75,)
|