Less screen output

merge-requests/30/head
Bob Mottram 2022-06-30 12:56:35 +01:00
parent f6b2fed3f5
commit 9868ebd1c7
1 changed files with 2 additions and 1 deletions

View File

@ -363,7 +363,8 @@ def _speaker_mimic3(pitch: int, rate: int, srange: int,
' --length-scale ' + length_scale + \
' --noise-w ' + noise_w + \
' --stdout' + \
' "' + text + '" > ' + audio_filename
' "' + text + '" > ' + \
audio_filename + ' 2> /dev/null'
try:
os.system(cmd)
except OSError as ex: