Skip to content

Commit

Permalink
Update audio.py
Browse files Browse the repository at this point in the history
should be 22050 like previous
  • Loading branch information
kunci115 authored Jun 27, 2024
1 parent 6c0989d commit ecfa130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tortoise/utils/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ecfa130

Please sign in to comment.