We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb976b0 commit 203a9b9Copy full SHA for 203a9b9
Python Voice Generator.py
@@ -0,0 +1,11 @@
1
+#install and import google text-to-speech library gtts
2
+from gtts import gTTS
3
+import os
4
+#provide user input text
5
+text=input('enter the text: ')
6
+#covert text into voice
7
+voice=gTTS(text=text, lang='en')
8
+#save the generated voice
9
+voice.save('output.mp3')
10
+#play the file in windows
11
+os.system('start output.mp3')
0 commit comments