If you want to easily synthesize voice with python, eSpeak is recommended.
An open source speech synthesizer that supports multiple languages.
Not only English, but also Spanish, German, Chinese, etc. are widely supported. (Unfortunately Japanese is not supported)
Click here for a list of supported languages
There seems to be a way to make it compatible with Japanese. → http://ja.nishimotz.com/espeak
sudo aptitude install python-espeak
Program that utters Hello World
helloworld.py
from espeak import espeak
espeak.synth("Hello World")
Recommended Posts