Update app.py
Browse files
app.py
CHANGED
@@ -288,14 +288,14 @@ with gr.Blocks(title="Hex RVC", theme=gr.themes.Default(primary_hue="red", secon
|
|
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", "rmvpe+", "fcpe", "hybrid[rmvpe+fcpe]"], label="F0 Method", value="fcpe")
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
|
300 |
with gr.Accordion("Hex TTS"):
|
301 |
input_text = gr.Textbox(lines=5, label="Input Text")
|
|
|
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", "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")
|
294 |
+
CREPE_HOP_LENGTH = gr.Number(label="Crepe Hop Length", value=120)
|
295 |
+
INDEX_RATE = gr.Slider(label="Index Rate", minimum=0, maximum=1, value=0.75)
|
296 |
+
FILTER_RADIUS = gr.Number(label="Filter Radius", value=3)
|
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")
|