File size: 1,359 Bytes
7ca4301
1242c83
7ca4301
1242c83
 
60c82d7
7ca4301
032f0cb
93c94cd
cc3b92d
93c94cd
60c82d7
 
 
7ca4301
 
1242c83
 
7ca4301
 
 
 
 
 
 
60c82d7
ab14372
38dbb18
60c82d7
58c26e1
 
7ca4301
 
 
 
f745e48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import os
import gradio as gr
from scipy.io.wavfile import write


def inference(audio, is_fast):
    os.makedirs("out", exist_ok=True)
    # write('test.wav', audio[0], audio[1])
    print(audio)
    os.environ['DANNA_CHECKPOINTS'] = './checkpoints'
    cmd = f"danna_sep --outdir out \"{audio}\""
    if is_fast:
        cmd += " --fast"
    os.system(cmd)
    return "./out/test_vocals.wav", "./out/test_bass.wav",\
        "./out/test_drums.wav", "./out/test_other.wav"


title = "Danna-Sep"
description = "Gradio demo for Danna-Sep: Unite to separate them all. To use it, simply upload your audio, or click one of the examples to load them. Read more at the links below."
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2112.03752' target='_blank'>Danna-Sep: Unite to separate them all</a> | <a href='https://github.com/yoyololicon/danna-sep' target='_blank'>Github Repo</a></p>"

examples = []
gr.Interface(
    inference,
    [
        gr.Audio(type="filepath", label="Input"),
        gr.Checkbox(label="Faster inference without X-UMX")
    ],
    [gr.Audio(type="filepath", label="Vocals"), gr.Audio(type="filepath", label="Bass"), gr.Audio(
        type="filepath", label="Drums"), gr.Audio(type="filepath", label="Other")],
    title=title,
    description=description,
    article=article,
    examples=examples
).launch()