Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- app.py +21 -0
- requirements.txt +5 -0
app.py
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import gradio as gr
|
3 |
+
from scipy.io.wavfile import write
|
4 |
+
|
5 |
+
|
6 |
+
def inference(audio):
|
7 |
+
os.makedirs("out", exist_ok=True)
|
8 |
+
write('test.wav', audio[0], audio[1])
|
9 |
+
os.system("python3 -m demucs.separate -n mdx_extra_q --two-stems=vocals -d cpu test.wav -o out")
|
10 |
+
return "./out/htdemucs/test/vocals.wav","./out/htdemucs/test/no_vocals.wav"
|
11 |
+
|
12 |
+
title = "음성 분리"
|
13 |
+
|
14 |
+
examples=[['test.mp3']]
|
15 |
+
gr.Interface(
|
16 |
+
inference,
|
17 |
+
gr.Audio(type="numpy", label="Input"),
|
18 |
+
[gr.Audio(type="filepath", label="Vocals"),gr.Audio(type="filepath", label="No Vocals / Instrumental")],
|
19 |
+
title=title,
|
20 |
+
examples=examples
|
21 |
+
).launch(enable_queue=True, debug=True)
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
git+https://github.com/facebookresearch/demucs#egg=demucs
|
2 |
+
scipy
|
3 |
+
invisible-watermark
|
4 |
+
fonts
|
5 |
+
font-roboto
|