Spaces:
Runtime error
Runtime error
Commit
Β·
749bf24
1
Parent(s):
b260528
Upload app.py
Browse files
app.py
CHANGED
|
@@ -236,6 +236,7 @@ def demucs_separator(demucs_audio, demucs_model, demucs_output_format, demucs_sh
|
|
| 236 |
|
| 237 |
with gr.Blocks(theme="NoCrypt/[email protected]", title="π΅ UVR5 UI π΅") as app:
|
| 238 |
gr.Markdown("<h1> π΅ UVR5 UI π΅ </h1>")
|
|
|
|
| 239 |
with gr.Tabs():
|
| 240 |
with gr.TabItem("BS/Mel Roformer"):
|
| 241 |
with gr.Row():
|
|
@@ -527,5 +528,19 @@ with gr.Blocks(theme="NoCrypt/[email protected]", title="π΅ UVR5 UI π΅") as app:
|
|
| 527 |
|
| 528 |
demucs_button.click(demucs_separator, [demucs_audio, demucs_model, demucs_output_format, demucs_shifts, demucs_overlap], [demucs_stem1, demucs_stem2, demucs_stem3, demucs_stem4])
|
| 529 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 530 |
app.queue()
|
| 531 |
app.launch()
|
|
|
|
| 236 |
|
| 237 |
with gr.Blocks(theme="NoCrypt/[email protected]", title="π΅ UVR5 UI π΅") as app:
|
| 238 |
gr.Markdown("<h1> π΅ UVR5 UI π΅ </h1>")
|
| 239 |
+
gr.Markdown("If you liked this HF Space you can give me a β€οΈ")
|
| 240 |
with gr.Tabs():
|
| 241 |
with gr.TabItem("BS/Mel Roformer"):
|
| 242 |
with gr.Row():
|
|
|
|
| 528 |
|
| 529 |
demucs_button.click(demucs_separator, [demucs_audio, demucs_model, demucs_output_format, demucs_shifts, demucs_overlap], [demucs_stem1, demucs_stem2, demucs_stem3, demucs_stem4])
|
| 530 |
|
| 531 |
+
with gr.TabItem("Credits"):
|
| 532 |
+
gr.Markdown(
|
| 533 |
+
"""
|
| 534 |
+
UVR5 UI created by **[Not Eddy (Spanish Mod)](http://discord.com/users/274566299349155851)** in **[AI HUB](https://discord.gg/aihub)** community.
|
| 535 |
+
|
| 536 |
+
* python-audio-separator by [beveradb](https://github.com/beveradb).
|
| 537 |
+
* Thanks to (Ilaria)[https://github.com/TheStingerX] and (Mikus)[https://github.com/cappuch] for the help with the code.
|
| 538 |
+
* Improvements by [Blane187](https://github.com/Blane187).
|
| 539 |
+
|
| 540 |
+
You can donate to the original UVR5 project here:
|
| 541 |
+
[](https://www.buymeacoffee.com/uvr5)
|
| 542 |
+
"""
|
| 543 |
+
)
|
| 544 |
+
|
| 545 |
app.queue()
|
| 546 |
app.launch()
|