Shakerato

Text to speech(tts) in linux (with python code) 본문

Research

Text to speech(tts) in linux (with python code)

Shakeratto 2018. 6. 30. 18:28

1. Install application

sudo apt-get install gnustep-gui-runtime


2. test tts like below

say "hello"



3. create python code 'tts.py'


 import os

 os.system('say "hello"')


4. Run code

python tts.py


Comments