antonbol commited on
Commit
19af454
2 Parent(s): bc67f97 05c2757

Merge branch 'main' of https://huggingface.co/spaces/antonbol/vocal_remover into main

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()