There are several APIs available to convert text to speech in Python. One of such APIs is the Google Text to Speech API commonly known as the gTTS API. gTTS is a very easy to use tool which converts the text entered, into audio which can be saved as a mp3 file.
The gTTS API supports several languages including English, Hindi, Tamil, French, German and many more. The speech can be delivered in any one of the two available audio speeds, fast or slow. However, as of the latest update, it is not possible to change the voice of the generated audio.
Installation
To install the gTTS API, open terminal and write
pip install gTTS
This works for any platform.
Now we are all set to write a sample program that converts text to speech.
from gtts import gTTS
import os
mytext = 'Welcome to geeksforgeeks!'
language = 'en'
myobj = gTTS(text = mytext, lang = language, slow = False )
myobj.save( "welcome.mp3" )
os.system( "mpg321 welcome.mp3" )
|
Output
The output of the above program should be a
voice saying, 'Welcome to geeksforgeeks!'
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
10 Jan, 2023
Like Article
Save Article