Update app.py
Browse files
app.py
CHANGED
@@ -287,7 +287,7 @@ with gr.Blocks(title="Hex RVC", theme=gr.themes.Default(primary_hue="red", secon
|
|
287 |
with gr.Accordion("Conversion Settings"):
|
288 |
with gr.Row():
|
289 |
F0_CHANGE = gr.Number(label="Pitch Change (semitones)", value=0)
|
290 |
-
F0_METHOD = gr.Dropdown(choices=["crepe", "harvest", "mangio-crepe", "rmvpe", "
|
291 |
with gr.Row():
|
292 |
MIN_PITCH = gr.Textbox(label="Min Pitch", value="50")
|
293 |
MAX_PITCH = gr.Textbox(label="Max Pitch", value="1100")
|
@@ -297,7 +297,7 @@ with gr.Blocks(title="Hex RVC", theme=gr.themes.Default(primary_hue="red", secon
|
|
297 |
RMS_MIX_RATE = gr.Slider(label="RMS Mix Rate", minimum=0, maximum=1, value=0.25)
|
298 |
PROTECT = gr.Slider(label="Protect", minimum=0, maximum=1, value=0.33)
|
299 |
|
300 |
-
with gr.Accordion("Hex TTS"):
|
301 |
input_text = gr.Textbox(lines=5, label="Input Text")
|
302 |
#output_text = gr.Textbox(label="Output Text")
|
303 |
#output_audio = gr.Audio(type="filepath", label="Exported Audio")
|
|
|
287 |
with gr.Accordion("Conversion Settings"):
|
288 |
with gr.Row():
|
289 |
F0_CHANGE = gr.Number(label="Pitch Change (semitones)", value=0)
|
290 |
+
F0_METHOD = gr.Dropdown(choices=["crepe", "harvest", "mangio-crepe", "rmvpe", "fcpe", "hybrid[rmvpe+fcpe]"], label="F0 Method", value="fcpe")
|
291 |
with gr.Row():
|
292 |
MIN_PITCH = gr.Textbox(label="Min Pitch", value="50")
|
293 |
MAX_PITCH = gr.Textbox(label="Max Pitch", value="1100")
|
|
|
297 |
RMS_MIX_RATE = gr.Slider(label="RMS Mix Rate", minimum=0, maximum=1, value=0.25)
|
298 |
PROTECT = gr.Slider(label="Protect", minimum=0, maximum=1, value=0.33)
|
299 |
|
300 |
+
with gr.Accordion("Hex TTS", open=False):
|
301 |
input_text = gr.Textbox(lines=5, label="Input Text")
|
302 |
#output_text = gr.Textbox(label="Output Text")
|
303 |
#output_audio = gr.Audio(type="filepath", label="Exported Audio")
|