Update gui.py
Browse files
gui.py
CHANGED
@@ -418,6 +418,8 @@ def create_interface():
|
|
418 |
batch_size = gr.Slider(1, 16, value=1, step=1, label="⚡ Batch Size")
|
419 |
|
420 |
with gr.Tab("🎤 Roformer"):
|
|
|
|
|
421 |
roformer_category = gr.Dropdown(label="📚 Category", choices=list(ROFORMER_MODELS.keys()), value="General Purpose")
|
422 |
roformer_model = gr.Dropdown(label="🛠️ Model", choices=list(ROFORMER_MODELS["General Purpose"].keys()))
|
423 |
with gr.Row():
|
@@ -426,8 +428,6 @@ def create_interface():
|
|
426 |
with gr.Row():
|
427 |
roformer_pitch_shift = gr.Slider(-12, 12, value=0, step=1, label="🎵 Pitch")
|
428 |
roformer_override_seg_size = gr.Checkbox(value=False, label="🔧 Override Seg")
|
429 |
-
roformer_single_stem = gr.Textbox(label="🎼 Single Stem", placeholder="e.g., Instrumental")
|
430 |
-
roformer_audio = gr.Audio(label="🎧 Input Audio", type="filepath")
|
431 |
with gr.Row():
|
432 |
url_ro = gr.Textbox(label="🔗 URL", placeholder="Audio/Video URL")
|
433 |
download_roformer = gr.Button("⬇️ Download")
|
|
|
418 |
batch_size = gr.Slider(1, 16, value=1, step=1, label="⚡ Batch Size")
|
419 |
|
420 |
with gr.Tab("🎤 Roformer"):
|
421 |
+
roformer_single_stem = gr.Textbox(label="🎼 Single Stem", placeholder="e.g., Instrumental")
|
422 |
+
roformer_audio = gr.Audio(label="🎧 Input Audio", type="filepath")
|
423 |
roformer_category = gr.Dropdown(label="📚 Category", choices=list(ROFORMER_MODELS.keys()), value="General Purpose")
|
424 |
roformer_model = gr.Dropdown(label="🛠️ Model", choices=list(ROFORMER_MODELS["General Purpose"].keys()))
|
425 |
with gr.Row():
|
|
|
428 |
with gr.Row():
|
429 |
roformer_pitch_shift = gr.Slider(-12, 12, value=0, step=1, label="🎵 Pitch")
|
430 |
roformer_override_seg_size = gr.Checkbox(value=False, label="🔧 Override Seg")
|
|
|
|
|
431 |
with gr.Row():
|
432 |
url_ro = gr.Textbox(label="🔗 URL", placeholder="Audio/Video URL")
|
433 |
download_roformer = gr.Button("⬇️ Download")
|