Re: text to speech volume
Re: text to speech volume
- Subject: Re: text to speech volume
- From: Mr Tea <email@hidden>
- Date: Wed, 25 Sep 2002 23:23:46 +0100
This from Michael P. Wilson - dated 25-9-02 09.46 pm:
>
I'm finding this all quite amazing. Is there a definitive list of all
>
voices somewhere?
In the 'Default Voice' panel of the 'Speech' pane in System Preferences.
Click on each voice to hear a sample. ;-)
Or, for a quick preview, run this:
set theVoices to list folder (path to voices)
set AppleScript's text item delimiters to "."
repeat with vox in theVoices
set voxID to (text item 1 of vox) as string
try
say "This is the voice of " & voxID using voxID
on error
set voxID to "Bad News"
say "This is the voice of " & voxID using voxID
end try
end repeat
set AppleScript's text item delimiters to ""
(There may be an easier way)
>
>
Please point me to TFM that I may R it and not bother the list with
>
such trivialities ;-p
Did you try 'Mac Help'? ;-)
Regards
Nick
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.