Service can't handle control chars that aren't whitepace. From comment

This commit is contained in:
rany
2021-05-11 00:23:14 +03:00
parent 332f3f5d51
commit c3be6ef493

View File

@@ -81,7 +81,7 @@ if __name__ == "__main__":
volumeString = args.volume
sentenceBoundaryEnabled = 'True' if args.enable_sentence_boundary else 'False'
wordBoundaryEnabled = 'True' if args.disable_word_boundary else 'False'
text = args.text
text = args.text.replace(chr(9), " ").replace(chr(13), " ").replace(chr(32), " ")
run_tts()
elif args.list_voices is True:
list_voices()