Update audio.py

should be 22050 like previous
This commit is contained in:
Rino Alfian 2024-06-27 12:00:54 +07:00 committed by GitHub
parent 6c0989d20a
commit ecfa130329
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -114,7 +114,7 @@ def load_voice(voice, extra_voice_dirs=[]):
conds = []
for cond_path in paths:
if not cond_path.endswith('.pth'):
c = load_audio(cond_path, 24000)
c = load_audio(cond_path, 22050)
conds.append(c)
if not pth_files: