We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using Python 3.11 on Windows.
import pyttsx3 # Step 1 e1 = pyttsx3.init() e1.say("Hallo erst mal...") e1.runAndWait() rate = e1.getProperty('rate') # Step 2 e1.setProperty('rate', rate+50) print(e1.getProperty('rate')) e1.say("Hallo erst mal...") e1.runAndWait() # however, speaks faster.
At Step 1, the rate is 200, which is the default setting. Now I change the rate. Speaks faster, but prints 200 as before.
Apparently not yet fixed by #6.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using Python 3.11 on Windows.
At Step 1, the rate is 200, which is the default setting.
Now I change the rate.
Speaks faster, but prints 200 as before.
Apparently not yet fixed by #6.
The text was updated successfully, but these errors were encountered: