Hi all, I'm new to python. I am developing a text to speech application using python. So, I'm using a package named "pyTTS" version 3, compatible with python 2.5.
Using an existing example, I wrote the following orders:
import pyTTS
tts = pyTTS.Create()
Before this, I've installed the following packages: python-2.5
pyTTS-3.0.win32-py2.5
msttss22L
SAPI5SpeechInstaller
But I faced this error:
Trackback (most recent call last):
File "<pyshell#1>", line 1, in <module>
tts = pyTTS.Create()
File "C:\Python2 5\Lib\site-packages\pyTTS\_init_.py", line 28, in Create
raise ValueError('"%s" not supported' % api)
ValueError: "SAPI" not supported
I think that the problem is in the SAPI package, but I don't know how to solve it. Could you help me?