Spaces:
Runtime error
Runtime error
Commit
·
c148b99
1
Parent(s):
0055a89
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from pathlib import Path
|
3 |
+
|
4 |
+
from utils.hparams import hparams
|
5 |
+
from preprocessing.data_gen_utils import get_pitch_parselmouth, get_pitch_crepe
|
6 |
+
import numpy as np
|
7 |
+
import matplotlib.pyplot as plt
|
8 |
+
import librosa
|
9 |
+
import utils
|
10 |
+
import touchcrepe
|
11 |
+
from infer import *
|
12 |
+
import logging
|
13 |
+
|
14 |
+
import tempfile
|
15 |
+
|
16 |
+
from infer_tools.infer_tool import *
|
17 |
+
|
18 |
+
# 모델 가져오기
|
19 |
+
project_name = "duckaloid"
|
20 |
+
model_path = "model_ckpt_steps_50000.ckpt"
|
21 |
+
config_path="config.yaml"
|
22 |
+
hubert_gpu=False
|
23 |
+
svc_model = Svc(project_name,config_path,hubert_gpu, model_path)
|
24 |
+
|
25 |
+
pndm_speedup = 20
|
26 |
+
add_noise_step = 500
|
27 |
+
thre = 0.05
|
28 |
+
use_crepe = False
|
29 |
+
use_pe = False
|
30 |
+
use_gt_mel = False
|
31 |
+
|
32 |
+
|
33 |
+
def infer(audios, key):
|
34 |
+
#save audios into local storage
|
35 |
+
file_path = Path(tempfile.mkdtemp()) / "input.wav"
|
36 |
+
librosa.output.write_wav(file_path, audios)
|
37 |
+
|
38 |
+
demoaudio, sr = librosa.load("input.wav")
|
39 |
+
# infer
|
40 |
+
f0_tst, f0_pred, audio = run_clip(svc_model,file_path="input.wav", key=key, acc=pndm_speedup, use_crepe=use_crepe, use_pe=use_pe, thre=thre,
|
41 |
+
use_gt_mel=use_gt_mel, add_noise_step=add_noise_step,project_name=project_name,out_path="output.wav")
|
42 |
+
|
43 |
+
# return file
|
44 |
+
return audio
|
45 |
+
|
46 |
+
|
47 |
+
iface = gr.Interface(
|
48 |
+
fn=infer,
|
49 |
+
inputs=[gr.inputs.Audio(source="microphone", type="numpy", label="Audio Input"),gr.Slider(minimum=-12, maximum=12, step=1)],
|
50 |
+
outputs="audio")
|
51 |
+
iface.launch()
|