Re: [pygame] TTS and Pitch Parameter

2008-03-08 Thread FT
"Gary BIshop" <[EMAIL PROTECTED]> Wrote: I repeat, pyTTS, at least the version 3.0 that I have, does not have a method or property named Pitch. You are, I think simply assigned those values to an instance variable that you are adding to the tts object. Do you hear the pitch change when you assign

Re: [pygame] TTS and Pitch Parameter

2008-03-08 Thread Gary BIshop
I repeat, pyTTS, at least the version 3.0 that I have, does not have a method or property named Pitch. You are, I think simply assigned those values to an instance variable that you are adding to the tts object. Do you hear the pitch change when you assign to the pitch variable? I include a se

Re: [pygame] TTS and Pitch Parameter

2008-03-07 Thread FT
Brian, I sent a test below that does use the Pitch attribute and it does work. Now when adding pygame import, init pygame, then at the end pygame quit, it still works for the pitch, but an error saying python has encountered a problem comes up and exits the program after you click on the opti

Re: [pygame] TTS and Pitch Parameter

2008-03-07 Thread Brian Fisher
I'm afraid I don't understand - so the script you emailed works fine for you in python 2.5 on your windows box, right? So then what exactly doesn't work? I still don't get why you think pygame is involved... On Fri, Mar 7, 2008 at 3:45 PM, FT <[EMAIL PROTECTED]> wrote: > Below is the speech.

Re: [pygame] TTS and Pitch Parameter

2008-03-07 Thread FT
Hi! Below is the speech.py file which will load in python25 from my windows OS. It uses the same command as in the pygame example, no different. So, the same import should be in affect, except if pygame uses these same commands, the pitch does not work. import pyTTS import time tts = pyTTS.Cr

Re: [pygame] TTS and Pitch Parameter

2008-03-07 Thread Gary BIshop
I don't think pyTTS has a method or property named Pitch. Maybe you're using another tts engine? gb FT wrote: Brian, I know pygame has no text to speech, but the python25 I have does not have the error. It would appear to be how pygame was made. For the pyTTS module is brought in but somet

Re: [pygame] TTS and Pitch Parameter

2008-03-07 Thread Brian Fisher
why do you think pygame is involved at all? There are no pygame managed objects I am aware of that have either Pitch or Rate attributes. So what is the "tts" object you posted about? (the one that has no Pitch attribute) what is the code that gave you the tts object? On Fri, Mar 7, 2008 at 1:13 P

Re: [pygame] TTS and Pitch Parameter

2008-03-07 Thread FT
Brian, I know pygame has no text to speech, but the python25 I have does not have the error. It would appear to be how pygame was made. For the pyTTS module is brought in but something in pygame must be interfering with it. For the module is the same, something else must be there. Or a differe

Re: [pygame] TTS and Pitch Parameter

2008-03-07 Thread Brian Fisher
pygame doesn't have any text-to-speech features. I don't think pygame is related to the problem. I think it's a red herring. On Fri, Mar 7, 2008 at 11:31 AM, FT <[EMAIL PROTECTED]> wrote: > > When running a python25 game I get the tts.Rate and tts.Pitch to work > fine. But when using pygame t

[pygame] TTS and Pitch Parameter

2008-03-07 Thread FT
When running a python25 game I get the tts.Rate and tts.Pitch to work fine. But when using pygame the tts.Pitch is not there, is there a reason why? Is it because of the wrong version used to make pygame? I am using pygame 1.8.0 rc3 and it just says that this parameter is not a part of th