Skip to content

Commit 978539a

Browse files
authored
Update extract_f0_print.py
1 parent 5d5ab54 commit 978539a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extract_f0_print.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, samplerate=16000, hop_size=160):
3535
def compute_f0(self, path, f0_method):
3636
# default resample type of librosa.resample is "soxr_hq".
3737
# Quality: soxr_vhq > soxr_hq
38-
x, sr = librosa.load(path, self.fs, res_type='soxr_vhq')
38+
x, sr = librosa.load(path, self.fs)#, res_type='soxr_vhq'
3939
p_len = x.shape[0] // self.hop
4040
assert sr == self.fs
4141
if f0_method == "pm":

0 commit comments

Comments
 (0)