mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-04-04 03:38: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
|
||||
/assets/weights/*
|
||||
ffmpeg.*
|
||||
ffprobe.*
|
||||
ffprobe.*
|
||||
venv
|
@ -341,11 +341,13 @@ class Pipeline(object):
|
||||
if hasattr(f0_file, "name"):
|
||||
try:
|
||||
with open(f0_file.name, "r") as f:
|
||||
lines = f.read().strip("\n").split("\n")
|
||||
inp_f0 = []
|
||||
for line in lines:
|
||||
inp_f0.append([float(i) for i in line.split(",")])
|
||||
inp_f0 = np.array(inp_f0, dtype="float32")
|
||||
raw_lines = f.read()
|
||||
if len(raw_lines) > 0:
|
||||
lines = raw_lines.strip("\n").split("\n")
|
||||
inp_f0 = []
|
||||
for line in lines:
|
||||
inp_f0.append([float(i) for i in line.split(",")])
|
||||
inp_f0 = np.array(inp_f0, dtype="float32")
|
||||
except:
|
||||
traceback.print_exc()
|
||||
sid = torch.tensor(sid, device=self.device).unsqueeze(0).long()
|
||||
|
Loading…
x
Reference in New Issue
Block a user