We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0a197 commit 47871bdCopy full SHA for 47871bd
pyttsx3/voice.py
@@ -0,0 +1,6 @@
1
+#This Example based on Saving voice to a file
2
+
3
+import pyttsx3 #import pyttsx3
4
+engine = pyttsx3.init()
5
+engine.save_to_file('Hello World' , 'test.mp3') #saving voice to file
6
+engine.runAndWait()
0 commit comments