"Richard Gordon" <[EMAIL PROTECTED]> wrote:
>
>I've got a fatal bug using Parente's pyTTS with Python 2.3 on Windoze 32 
>using MS SAPI 5.1 and Hammond's win32 module. The test program is
>  import pyTTS
>  tts = pyTTS.Create()
>  tts.Speak('Hello world.')
>...
>  com_error: (-2147352567, 'Exception occurred.', (0, None, None, None, 
>0, -2147201015), None)
>  >>>
>
>The system does not have a sound card --- could that be an issue?

Of course.  -2147201015 is 0x80045009, which is SPERR_NO_DRIVER.

Seriously, what on earth did you expect this to do?  Its whole purpose is
send sounds to the sound driver.  If there is no sound driver, what was it
supposed to do with the audio data?
-- 
Tim Roberts, [EMAIL PROTECTED]
Providenza & Boekelheide, Inc.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to