-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext-to-speech.py
48 lines (30 loc) · 1.25 KB
/
text-to-speech.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from tkinter import *
from gtts import gTTS
from playsound import playsound
# initalizing window
root = Tk()
root.geometry("350x300")
root.configure(bg ='ghost white')
root.title("Anurag - TEXT TO SPEECH")
Label(root, text = "TEXT_TO_SPEECH",font = "arial 20 bold", bg = 'White smoke').pack()
Label(text = "Anurag", font= 'arial 15 bold', bg = 'white smoke',width ='20').pack(side = 'bottom')
Msg =StringVar()
Label(root, text = "Enter Text", font = 'arial 15 bold',bg='white smoke').place(x=20, y=60)
entry_field = Entry(root,textvariable=Msg, width='50')
entry_field.place(x=20, y=100)
#function to convert text to speech
def Text_to_speech():
Message = entry_field.get()
speech = gTTS(text=Message)
speech.save('Anurag.mp3')
playsound('Anurag.mp3')
#Function to exit
def Exit():
root.destroy()
#Function to Reset
def Reset():
Msg.set(" ")
Button(root, text ="PLAY", font = 'arial 15 bold', command = Text_to_speech,width='4').place(x=25,y=140)
Button(root, font = 'arial 15 bold',text ='EXIT', width= '4',command = Exit, bg ='OrangeRed1').place(x=100 , y =140)
Button(root, font = 'arial 15 bold',text='Reset',width='6',command = Reset,bg='OrangeRed1').place(x=175 , y=140)
root.mainloop()