show dbs
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
""" Code to convert text into speech and play the sound using gtts and vlc libraries.""" | |
# Library to convert from text to speech | |
from gtts import gTTS | |
#blabla = ("Spoking text using text to speech converter") | |
blabla = input('eneter your text: ') | |
tts = gTTS(text=blabla, lang='en') |
Author: Yotam Gingold
License: Public Domain (CC0)
This document is intended as a reference or introduction to JavaScript for someone familiar with a language like C/C++/Java or Python. It follows best practices and gathers the scattered wisdom from matny stackoverflow questions and in-depth JavaScript essays. It relies on no external libraries.