Skip to content

Commit fce86d3

Browse files
authored
Merge pull request larymak#147 from Soebb/main
Fix strange order
2 parents cd1fe97 + 4586e9c commit fce86d3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
2-
audio='speech.mp3'
31
from gtts import gTTS
42
from playsound import playsound
5-
lang='en'
3+
4+
audio='speech.mp3'
65
playsound(audio)
7-
sp.save(audio)
6+
lang='en'
7+
text="hELLO, OPEN SOURCE!"
88
sp=gTTS(text=text,lang=lang,slow=False)
9-
text="hELLO, OPEN SOURCE!"
9+
sp.save(audio)

0 commit comments

Comments
 (0)