main
Bob Mottram 2022-06-30 12:33:12 +01:00
parent 7c82bd0dba
commit be00e5144d
1 changed files with 2 additions and 0 deletions

View File

@ -360,7 +360,9 @@ def _speaker_mimic3(pitch: int, rate: int, srange: int,
cmd = 'mimic3 -v ' + voice + \
' --length-scale ' + length_scale + \
' --noise-w ' + noise_w + \
' --stdout' + \
' "' + text + '" > ' + audio_filename
print(cmd)
try:
os.system(cmd)
except OSError as ex: