Spaces:
Runtime error
Runtime error
Merge branch 'main' of https://huggingface.co/spaces/antonbol/vocal_remover into main
Browse files
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()
|