Comment convertir le texte en discours à l'aide de pthon
# please subscribe my channel - https://bit.ly/2Me2CfB
from gtts import gTTS
speech = gTTS(text="hello")
speech.save('speech.wav')
PROGRAMMING HERO