Page 2 of 2
RevSpeech, Lion, and New Voices
Posted: Mon Jul 25, 2011 4:35 pm
by CharlesSilverman
I've not been able to bring up any of the new Lion TTS voices using revSpeechVoice(). I've downloaded the voices and can access them in the Systems Prefs Speech->Text-to-Speech setup area. Is there a workaround to get these into my projects and/or is there a fix coming?
thanks,
Charles
_________
Charles Silverman, M.Ed.
Inclusive Media & Design, Inc.
Toronto ONTARIO
Re: Livecode and Lion
Posted: Thu Jul 28, 2011 2:57 pm
by Klaus
Hi Charles,
just downloaded some german speech files (which sound VERY good in fact!)
on OS X Lion and "revspeak" does definitively not work with them!
But we can use SHELL:
Code: Select all
...
get shell("say" && "my text to speak here...")
...
Will work with the voice you set up in the system prefs.
Not exactly what you need, but anyway...
Best
Klaus
Re: Livecode and Lion
Posted: Fri Aug 05, 2011 4:51 am
by CharlesSilverman
Thanks, Klaus - and appreciate the sample code - will give this a spin. Do you know if there's some way to detect if the voice is still speaking using the shell command?
My goal is to use the record command ... and see if this works, or a varation:
Code: Select all
get shell("say" &&"-o"&"e& "audio.aif""e&& "my text to speak here...")
Re: Livecode and Lion
Posted: Fri Aug 05, 2011 11:35 am
by Klaus
Hi Charles,
CharlesSilverman wrote:Do you know if there's some way to detect if the voice is still speaking using the shell command?
if "man say" won't give you a hint, I am afraid there is no ways doing so using "shell".
Best
Klaus