Answers for "how to use speech to text in python"

0

text to speech python

pip install pyttsx3

import pyttsx3
engine = pyttsx3.init()
engine.say("Whetever you want the program to ray")
engine.runAndWait()
Posted by: Guest on November-25-2021
1

how to convert text to speech using pthon

# please subscribe my channel - https://bit.ly/2Me2CfB
from gtts import gTTS

speech = gTTS(text="hello")
speech.save('speech.wav')
Posted by: Guest on July-09-2021

Code answers related to "how to use speech to text in python"

Python Answers by Framework

Browse Popular Code Answers by Language