1
0
mirror of synced 2024-11-15 03:07:40 +01:00

Update rvc_for_realtime.py

This commit is contained in:
RVC-Boss 2023-07-11 22:09:41 +08:00 committed by GitHub
parent 0f9d2e6cac
commit cd1d76aac2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,8 +187,8 @@ class RVC:
if (hasattr(self, "model_rmvpe") == False):
from rmvpe import RMVPE
print("loading rmvpe model")
# self.model_rmvpe = RMVPE("rmvpe.pt", is_half=self.is_half, device=self.device)
self.model_rmvpe = RMVPE("aug2_58000_half.pt", is_half=self.is_half, device=self.device)
self.model_rmvpe = RMVPE("rmvpe.pt", is_half=self.is_half, device=self.device)
# self.model_rmvpe = RMVPE("aug2_58000_half.pt", is_half=self.is_half, device=self.device)
f0 = self.model_rmvpe.infer_from_audio(x, thred=0.03)
f0 *= pow(2, f0_up_key / 12)
return self.get_f0_post(f0)