From 978539ad0e18322b71a93059064967134b99d933 Mon Sep 17 00:00:00 2001 From: RVC-Boss <129054828+RVC-Boss@users.noreply.github.com> Date: Sat, 22 Apr 2023 12:17:32 +0000 Subject: [PATCH] Update extract_f0_print.py --- extract_f0_print.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract_f0_print.py b/extract_f0_print.py index d2bc805..f848a0a 100644 --- a/extract_f0_print.py +++ b/extract_f0_print.py @@ -35,7 +35,7 @@ class FeatureInput(object): def compute_f0(self, path, f0_method): # default resample type of librosa.resample is "soxr_hq". # Quality: soxr_vhq > soxr_hq - x, sr = librosa.load(path, self.fs, res_type='soxr_vhq') + x, sr = librosa.load(path, self.fs)#, res_type='soxr_vhq' p_len = x.shape[0] // self.hop assert sr == self.fs if f0_method == "pm":