Created
June 21, 2020 09:08
-
-
Save PratyushMishra02/649dceb4927d2dd69cd9b571dfe4a83a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Import | |
from gtts import gTTS | |
import os | |
#txt file | |
f=open('1.txt') | |
x=f.read() | |
language='en' | |
#audio | |
audio=gTTS(text=x,lang=language,slow=False) | |
audio.save("1.wav") | |
os.system("1.wav") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment