diff options
Diffstat (limited to 'tools/sapi_voice.vbs')
| -rwxr-xr-x | tools/sapi_voice.vbs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/sapi_voice.vbs b/tools/sapi_voice.vbs index 440444c..4199101 100755 --- a/tools/sapi_voice.vbs +++ b/tools/sapi_voice.vbs @@ -108,7 +108,7 @@ If bSAPI4 Then oTTS.Select nMode
' Speed selection
- If sSpeed <> "" Then oSpVoice.Speed = sSpeed
+ If sSpeed <> "" Then oTTS.Speed = sSpeed
Else ' SAPI5
' Create SAPI5 object
Set oSpVoice = CreateObject("SAPI.SpVoice")
@@ -123,7 +123,7 @@ Else ' SAPI5 For Each nLangID in LangIDs(sLanguage)
sSelectString = "Language=" & Hex(nLangID)
For Each oVoice in oSpVoice.GetVoices(sSelectString)
- WScript.StdErr.Write oVoice.GetDescription & ","
+ WScript.StdErr.Write oVoice.GetAttribute("Name") & ","
Next
Next
WScript.StdErr.WriteLine
|