pyttsx3 でアクセントを変更するにはどうすればよいですか?
音声と音声の速度を変更することに成功しました。
import pyttsx3
engine=pyttsx3.init()
voice=engine.getProperty('voices')[0]
engine.setProperty('voice',voice.id)
engine.setProperty('rate',100)
engine.say("Hello there!")
engine.runAndWait()
アクセントに変化。