Are there any libraries in Python that does or allows Text To Speech Conversion using Mac Lion\'s built in text to speech engine? I did google but most are windows based. I
This might work:
import subprocess subprocess.call(["say","Hello World! (MESSAGE)"])