File size: 1,380 Bytes
7ca4301
1242c83
7ca4301
1242c83
 
60c82d7
7ca4301
 
cc3b92d
60c82d7
 
 
 
7ca4301
 
1242c83
 
7ca4301
 
 
 
 
 
 
60c82d7
 
12beffa
60c82d7
7ca4301
 
 
 
 
 
 
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
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])
    os.environ['DANNA_CHECKPOINTS'] = './checkpoints'
    cmd = "danna_sep --outdir out test.wav"
    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.inputs.Audio(type="numpy", label="Input"),
        gr.inputs.Checkbox(label="Faster inference without X-UMX")
    ],
    [gr.outputs.Audio(type="file", label="Vocals"), gr.outputs.Audio(type="file", label="Bass"), gr.outputs.Audio(
        type="file", label="Drums"), gr.outputs.Audio(type="file", label="Other")],
    title=title,
    description=description,
    article=article,
    examples=examples
).launch(enable_queue=True)