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.
2 parents c0945bc + 7c38e52 commit dd9ad13Copy full SHA for dd9ad13
README.md
@@ -45,6 +45,8 @@ When you Add a projectAdd it to the README for ease of finding it
45
* [Random Password Generator](https://github.com/larymak/Python-project-Scripts/tree/main/RandomPassword)
46
47
* [YouTube Video Downloader](https://github.com/larymak/Python-project-Scripts/tree/main/YoutubeDownloader)
48
+
49
+* Text to Audio
50
51
_more coming soon_
52
texttoaudio/code.py
@@ -0,0 +1,9 @@
1
2
+audio='speech.mp3'
3
+from gtts import gTTS
4
+from playsound import playsound
5
+lang='en'
6
+playsound(audio)
7
+sp.save(audio)
8
+sp=gTTS(text=text,lang=lang,slow=False)
9
+text="hELLO, OPEN SOURCE!"
0 commit comments