pyttsx をダウンロードしましたが、音声のリストに 1 つの音声 (Microsoft Anna) しかないことを除いて、正常に動作しているようです。男性の声に変更できるようにしたいのですが、試したり調べたりしてもうまくいきませんでした。これが私の現在のテストコードです:
import pyttsx
engine = pyttsx.init()
engine.setProperty('rate', 100)
voices = engine.getProperty('voices')
for voice in voices:
print "Using voice:", repr(voice.name)
engine.setProperty('voice', voice.id)
engine.setProperty('gender', 'male') #this doesn't raise an error, but also won't do anything
engine.say("Hi there, how's you ?")
engine.say("A B C D E F G H I J K L M")
engine.say("N O P Q R S T U V W X Y Z")
engine.say("0 1 2 3 4 5 6 7 8 9")
engine.say("Sunday Monday Tuesday Wednesday Thursday Friday Saturday")
engine.say("Violet Indigo Blue Green Yellow Orange Red")
engine.say("Apple Banana Cherry Date Guava")
engine.runAndWait()
これは 1 つのループに対してのみ実行されます。print(voices) と言うと、項目が 1 つだけのリストが出力されます。助言がありますか?