1
0
mirror of https://github.com/fumiama/Retrieval-based-Voice-Conversion-WebUI.git synced 2026-06-07 10:10:23 +08:00

fix: json format (#84)

* Update extract_locale.py

* Apply Code Formatter Change

* Update locale_diff.py

* Apply Code Formatter Change

---------

Co-authored-by: fumiama <fumiama@users.noreply.github.com>
This commit is contained in:
源文雨
2023-04-17 20:49:29 +08:00
committed by GitHub
parent 5ab6713bb3
commit b0f8a4c7d1
6 changed files with 19 additions and 5 deletions

View File

@@ -39,7 +39,7 @@ class PreProcess:
max_sil_kept=150,
)
self.sr = sr
self.bh, self.ah = signal.butter(N=5, Wn=48, btype='high', fs=self.sr)
self.bh, self.ah = signal.butter(N=5, Wn=48, btype="high", fs=self.sr)
self.per = 3.7
self.overlap = 0.3
self.tail = self.per + self.overlap