TheStinger commited on
Commit
43c4ca8
1 Parent(s): 02ebb7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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 = "Trascina un file audio e separalo facilmente! Supportami su Ko-Fi.</p>"
13
  article = "Made with 💖 by Ilaria"
14
 
15
  examples=[['test.mp3']]
16
  gr.Interface(
17
  inference,
18
- gr.Audio(type="numpy", label="Canzone"),
19
- [gr.Audio(type="filepath", label="Vocale"),gr.Audio(type="filepath", label="Strumentale")],
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)