https://pythonprogramminglanguage.com/text-to-speech/
Text to speech
Text to speech
We can make the computer speak with Python.
Given a text string, it will speak the written words in the English language.
This process is called Text To Speech (TTS).
Related Course: The Complete Machine Learning Course with Python
Text to speech
Pyttsx text to speech
Pytsx is a cross-platform text-to-speech wrapper.
It uses different speech engines based on your operating system:
sapi5 - SAPI5 on Windows XP, Windows Vista, and (untested) Windows 7
espeak - eSpeak on any distro / platform that can host the shared library (e.g., Ubuntu / Fedora Linux)
Install with pip (using pyenv, pipenv or virtualenv):
sudo pip install pyttsx
Then run the example code:
import pyttsx |
gTTS text to speech
gTTS is a module and command line utility to save spoken text to mp3.
It uses the Google Text to Speech (TTS) API.
Listen to the voice sample below:
Related Course: The Complete Machine Learning Course with Python
This module supports many languages and sounds very natural.
Install
Install with the python package tool (pip):
sudo pip install gTTS
Example
from gtts import gTTS |
If you want to test it on the command line use:
gtts-cli.py "Hello" -l 'en' -o hello.mp3
iOS TTS and speech recognition
TTS in Pythonista for iOS:
import speech |
To record sound:
import sound |
To recognize it as text:
text = speech.recognize('audio.m4a', 'en')[0][0] # sent to Apple servers |
Microsoft speech engine
If you use Microsoft Windows 10, it has a speech engine included.
Install the module win32com, then you can use this code:
import win32com.client as wincl |
IBM Watson TTS
IBM has created an tts API, which is free for a limited amount of queries.
You can listen to sample data on the Watson TTS page.
You can use the tts-watson module to interact.
pip install tts-watson
After registrating on the IBM watson site (generate keys there),
we can write our code:
|
No hay comentarios:
Publicar un comentario