Skip to content

Commit 4586e9c

Browse files
authored
Fix strange order
1 parent 3120c37 commit 4586e9c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
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)