Eddycrack864 commited on
Commit
552af00
β€’
1 Parent(s): 51d3d42

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -0
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/miku@1.2.2", 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/miku@1.2.2", 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/miku@1.2.2", 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
+ [!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/uvr5)
542
+ """
543
+ )
544
+
545
  app.queue()
546
  app.launch()