mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-04-05 04:08:58 +08:00
Merge db166e9759882ff99327c8c080f64aa59cbc1a81 into 7ef19867780cf703841ebafb565a4e47d1ea86ff
This commit is contained in:
commit
d1cd8e24f2
3
.gitignore
vendored
3
.gitignore
vendored
@ -25,4 +25,5 @@ rmvpe.pt
|
|||||||
/runtime
|
/runtime
|
||||||
/assets/weights/*
|
/assets/weights/*
|
||||||
ffmpeg.*
|
ffmpeg.*
|
||||||
ffprobe.*
|
ffprobe.*
|
||||||
|
venv
|
@ -341,11 +341,13 @@ class Pipeline(object):
|
|||||||
if hasattr(f0_file, "name"):
|
if hasattr(f0_file, "name"):
|
||||||
try:
|
try:
|
||||||
with open(f0_file.name, "r") as f:
|
with open(f0_file.name, "r") as f:
|
||||||
lines = f.read().strip("\n").split("\n")
|
raw_lines = f.read()
|
||||||
inp_f0 = []
|
if len(raw_lines) > 0:
|
||||||
for line in lines:
|
lines = raw_lines.strip("\n").split("\n")
|
||||||
inp_f0.append([float(i) for i in line.split(",")])
|
inp_f0 = []
|
||||||
inp_f0 = np.array(inp_f0, dtype="float32")
|
for line in lines:
|
||||||
|
inp_f0.append([float(i) for i in line.split(",")])
|
||||||
|
inp_f0 = np.array(inp_f0, dtype="float32")
|
||||||
except:
|
except:
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
sid = torch.tensor(sid, device=self.device).unsqueeze(0).long()
|
sid = torch.tensor(sid, device=self.device).unsqueeze(0).long()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user