Debug Crepe

This commit is contained in:
ylzz1997 2023-06-04 21:24:55 +08:00
parent 03fbd1aaf2
commit c66b3b8eef
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ class CrepePitchExtractor(BasePitchExtractor):
else:
pd = torchcrepe.filter.median(pd, 3)
pd = torchcrepe.threshold.Silence(-60.0)(pd, x, sampling_rate, 512)
pd = torchcrepe.threshold.Silence(-60.0)(pd, x, sampling_rate, self.hop_length)
f0 = torchcrepe.threshold.At(self.threshold)(f0, pd)
if self.use_fast_filters: