Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -449,18 +449,18 @@ with gr.Blocks(css=css) as main:
|
|
449 |
gr.Markdown("🪄 Add tone to audio.")
|
450 |
|
451 |
with gr.Column():
|
452 |
-
input = gr.Audio(label="Input Audio", type="filepath")
|
453 |
-
reference_input = gr.Audio(label="Reference Audio", type="filepath")
|
454 |
|
455 |
with gr.Column():
|
456 |
-
steps = gr.Slider(label="Steps", value=1, minimum=1, maximum=100, step=1)
|
457 |
-
guidance = gr.Slider(label="Guidance", value=0.7, minimum=0.0, maximum=1.0, step=0.1)
|
458 |
-
speed = gr.Slider(label="Speed", value=1.0, minimum=0.5, maximum=2.0, step=0.1)
|
459 |
|
460 |
with gr.Column():
|
461 |
use_conditioned = gr.Checkbox(label="Use 'F0 Conditioned Model'", value=False),
|
462 |
-
use_auto_adjustment = gr.Checkbox(label="Use 'Auto F0 Adjustment' with 'F0 Conditioned Model'", value=True)
|
463 |
-
pitch = gr.Slider(label="Pitch with 'F0 Conditioned Model'", value=0, minimum=-12, maximum=12, step=1)
|
464 |
|
465 |
with gr.Column():
|
466 |
submit = gr.Button("▶")
|
|
|
449 |
gr.Markdown("🪄 Add tone to audio.")
|
450 |
|
451 |
with gr.Column():
|
452 |
+
input = gr.Audio(label="Input Audio", type="filepath")
|
453 |
+
reference_input = gr.Audio(label="Reference Audio", type="filepath")
|
454 |
|
455 |
with gr.Column():
|
456 |
+
steps = gr.Slider(label="Steps", value=1, minimum=1, maximum=100, step=1)
|
457 |
+
guidance = gr.Slider(label="Guidance", value=0.7, minimum=0.0, maximum=1.0, step=0.1)
|
458 |
+
speed = gr.Slider(label="Speed", value=1.0, minimum=0.5, maximum=2.0, step=0.1)
|
459 |
|
460 |
with gr.Column():
|
461 |
use_conditioned = gr.Checkbox(label="Use 'F0 Conditioned Model'", value=False),
|
462 |
+
use_auto_adjustment = gr.Checkbox(label="Use 'Auto F0 Adjustment' with 'F0 Conditioned Model'", value=True)
|
463 |
+
pitch = gr.Slider(label="Pitch with 'F0 Conditioned Model'", value=0, minimum=-12, maximum=12, step=1)
|
464 |
|
465 |
with gr.Column():
|
466 |
submit = gr.Button("▶")
|