antonbol commited on
Commit
05c2757
1 Parent(s): a7804b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def vocal_remove(audio):
4
+ return audio
5
+
6
+ iface = gr.Interface(
7
+ fn=vocal_remove,
8
+ inputs=gr.Audio(source="upload", type="filepath"),
9
+ outputs="audio",
10
+ title="Vocal Remover",
11
+ description="Removes Vocals from song",
12
+ )
13
+
14
+ iface.launch()