Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -330,10 +330,7 @@ def update_stems(model):
|
|
330 |
with gr.Blocks(
|
331 |
title="🎵 Audio-Separator 🎵",
|
332 |
css="footer{display:none !important}",
|
333 |
-
theme=gr.themes.Default(
|
334 |
-
spacing_size="sm",
|
335 |
-
radius_size="lg",
|
336 |
-
)
|
337 |
) as app:
|
338 |
gr.HTML("<h1> 🎵 Audio-Separator 🎵 </h1>")
|
339 |
|
@@ -442,6 +439,13 @@ with gr.Blocks(
|
|
442 |
amp_threshold = gr.Slider(minimum=0.1, maximum=1, step=0.1, value=0.6, label="Amplification threshold", info="The threshold for audio amplification.")
|
443 |
with gr.Row():
|
444 |
batch_size = gr.Slider(minimum=1, maximum=16, step=1, value=1, label="Batch Size", info="Larger consumes more RAM but may process slightly faster.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
|
446 |
|
447 |
demucs_model.change(update_stems, inputs=[demucs_model], outputs=stem6)
|
|
|
330 |
with gr.Blocks(
|
331 |
title="🎵 Audio-Separator 🎵",
|
332 |
css="footer{display:none !important}",
|
333 |
+
theme=gr.themes.Default()
|
|
|
|
|
|
|
334 |
) as app:
|
335 |
gr.HTML("<h1> 🎵 Audio-Separator 🎵 </h1>")
|
336 |
|
|
|
439 |
amp_threshold = gr.Slider(minimum=0.1, maximum=1, step=0.1, value=0.6, label="Amplification threshold", info="The threshold for audio amplification.")
|
440 |
with gr.Row():
|
441 |
batch_size = gr.Slider(minimum=1, maximum=16, step=1, value=1, label="Batch Size", info="Larger consumes more RAM but may process slightly faster.")
|
442 |
+
with gr.Tab("Credits"):
|
443 |
+
gr.Markdown("""
|
444 |
+
Politrees - gradio webui
|
445 |
+
theNeodev - mod the ui
|
446 |
+
nomadkaraoke - project own
|
447 |
+
|
448 |
+
""")
|
449 |
|
450 |
|
451 |
demucs_model.change(update_stems, inputs=[demucs_model], outputs=stem6)
|