Merge db166e9759882ff99327c8c080f64aa59cbc1a81 into 7ef19867780cf703841ebafb565a4e47d1ea86ff

This commit is contained in:
limitcantcode 2024-11-25 17:41:53 +08:00 committed by GitHub
commit d1cd8e24f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 6 deletions

3
.gitignore vendored
View File

@ -25,4 +25,5 @@ rmvpe.pt
/runtime
/assets/weights/*
ffmpeg.*
ffprobe.*
ffprobe.*
venv

View File

@ -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()