Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make gtts text to speech converter

from gtts import gTTS
import os 

text = " python is the most easiest programing language "

language = "en-us"
roh = gTTS( text = text , lang = language , slow = False)
roh.save("play.mp3")
os.system(" start play.mp3")
Source by www.javatpoint.com #
 
PREVIOUS NEXT
Tagged: #gtts #text #speech #converter
ADD COMMENT
Topic
Name
5+4 =