Spaces:
Running
Running
Update main/app/app.py
Browse files- main/app/app.py +3 -3
main/app/app.py
CHANGED
|
@@ -32,13 +32,13 @@ with gr.Blocks(title="Ultimate RVC Maker ⚡", theme=theme) as app:
|
|
| 32 |
with gr.Row():
|
| 33 |
with gr.Column():
|
| 34 |
with gr.Group():
|
| 35 |
-
with gr.Row():
|
| 36 |
cleaner = gr.Checkbox(label=translations["clear_audio"], value=False, interactive=True, min_width=140)
|
| 37 |
backing = gr.Checkbox(label=translations["separator_backing"], value=False, interactive=True, min_width=140)
|
| 38 |
reverb = gr.Checkbox(label=translations["dereveb_audio"], value=False, interactive=True, min_width=140)
|
| 39 |
backing_reverb = gr.Checkbox(label=translations["dereveb_backing"], value=False, interactive=False, min_width=140)
|
| 40 |
denoise = gr.Checkbox(label=translations["denoise_mdx"], value=False, interactive=False, min_width=140)
|
| 41 |
-
with gr.Row():
|
| 42 |
separator_model = gr.Dropdown(label=translations["separator_model"], value=uvr_model[0], choices=uvr_model, interactive=True)
|
| 43 |
separator_backing_model = gr.Dropdown(label=translations["separator_backing_model"], value="Version-1", choices=["Version-1", "Version-2"], interactive=True, visible=backing.value)
|
| 44 |
with gr.Row():
|
|
@@ -47,7 +47,7 @@ with gr.Blocks(title="Ultimate RVC Maker ⚡", theme=theme) as app:
|
|
| 47 |
with gr.Row():
|
| 48 |
with gr.Column():
|
| 49 |
with gr.Group():
|
| 50 |
-
with gr.Row():
|
| 51 |
shifts = gr.Slider(label=translations["shift"], info=translations["shift_info"], minimum=1, maximum=20, value=2, step=1, interactive=True)
|
| 52 |
segment_size = gr.Slider(label=translations["segments_size"], info=translations["segments_size_info"], minimum=32, maximum=3072, value=256, step=32, interactive=True)
|
| 53 |
with gr.Row():
|
|
|
|
| 32 |
with gr.Row():
|
| 33 |
with gr.Column():
|
| 34 |
with gr.Group():
|
| 35 |
+
with gr.Row(equal_height=True):
|
| 36 |
cleaner = gr.Checkbox(label=translations["clear_audio"], value=False, interactive=True, min_width=140)
|
| 37 |
backing = gr.Checkbox(label=translations["separator_backing"], value=False, interactive=True, min_width=140)
|
| 38 |
reverb = gr.Checkbox(label=translations["dereveb_audio"], value=False, interactive=True, min_width=140)
|
| 39 |
backing_reverb = gr.Checkbox(label=translations["dereveb_backing"], value=False, interactive=False, min_width=140)
|
| 40 |
denoise = gr.Checkbox(label=translations["denoise_mdx"], value=False, interactive=False, min_width=140)
|
| 41 |
+
with gr.Row(equal_height=True):
|
| 42 |
separator_model = gr.Dropdown(label=translations["separator_model"], value=uvr_model[0], choices=uvr_model, interactive=True)
|
| 43 |
separator_backing_model = gr.Dropdown(label=translations["separator_backing_model"], value="Version-1", choices=["Version-1", "Version-2"], interactive=True, visible=backing.value)
|
| 44 |
with gr.Row():
|
|
|
|
| 47 |
with gr.Row():
|
| 48 |
with gr.Column():
|
| 49 |
with gr.Group():
|
| 50 |
+
with gr.Row(equal_height=True):
|
| 51 |
shifts = gr.Slider(label=translations["shift"], info=translations["shift_info"], minimum=1, maximum=20, value=2, step=1, interactive=True)
|
| 52 |
segment_size = gr.Slider(label=translations["segments_size"], info=translations["segments_size_info"], minimum=32, maximum=3072, value=256, step=32, interactive=True)
|
| 53 |
with gr.Row():
|