Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
43c4ca8
1
Parent(s):
02ebb7f
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,16 +9,16 @@ def inference(audio):
|
|
| 9 |
return "./out/htdemucs/test/vocals.wav","./out/htdemucs/test/no_vocals.wav"
|
| 10 |
|
| 11 |
title = "Ilaria UVR 💖"
|
| 12 |
-
description = "
|
| 13 |
article = "Made with 💖 by Ilaria"
|
| 14 |
|
| 15 |
examples=[['test.mp3']]
|
| 16 |
gr.Interface(
|
| 17 |
inference,
|
| 18 |
-
gr.Audio(type="numpy", label="
|
| 19 |
-
[gr.Audio(type="filepath", label="
|
| 20 |
title=title,
|
| 21 |
description=description,
|
| 22 |
article=article,
|
| 23 |
examples=examples
|
| 24 |
-
).launch()
|
|
|
|
| 9 |
return "./out/htdemucs/test/vocals.wav","./out/htdemucs/test/no_vocals.wav"
|
| 10 |
|
| 11 |
title = "Ilaria UVR 💖"
|
| 12 |
+
description = "Drag and drop an audio file to easily separate it! [Join AI Hub Discord Server](https://discord.gg/aihub).</p>"
|
| 13 |
article = "Made with 💖 by Ilaria"
|
| 14 |
|
| 15 |
examples=[['test.mp3']]
|
| 16 |
gr.Interface(
|
| 17 |
inference,
|
| 18 |
+
gr.Audio(type="numpy", label="Song"),
|
| 19 |
+
[gr.Audio(type="filepath", label="Vocals"),gr.Audio(type="filepath", label="Instrumentals")],
|
| 20 |
title=title,
|
| 21 |
description=description,
|
| 22 |
article=article,
|
| 23 |
examples=examples
|
| 24 |
+
).launch(enable_queue=False)
|