File size: 908 Bytes
51cdecb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
49
50
51
52
53
#!/usr/bin/env python
# coding: utf-8

# In[20]:


from gtts import gTTS
import gradio as gr
import warnings
warnings.filterwarnings('ignore')


# In[22]:


def textToSpeech(text,lang,file):
    
    if file is not None:
        with open(file.name, "r", encoding="utf-8") as f:
            text = f.read()

    record=gTTS(text=text,lang=lang,slow=False)
    record.save("output.mp3")
    return "output.mp3"


# In[25]:


interface=gr.Interface(
    fn=textToSpeech,
    inputs=[gr.Textbox(label='Text to be spoken'),
            gr.Dropdown(
            ["tr", "en", "fr", "de"],  
            label="Language Selection",
            value="tr"),
            gr.File(label="Upload Text File(Optional)",type="filepath")
            ],
    outputs=gr.Audio(label="Voice"),
    title="Text To Speech",
    description="Enter the text you want to voice into the box"
    
)

interface.launch()


# In[ ]: