Frost00001
Newbie
- Jan 25, 2018
- 52
- 24
- 193
Renpy Game voice and voice speed changer
This is a problem I had for a long time changing the default voice of the ingame narrator and changing the reading speed.
Replace the file “say.vbs” with the attached file in the “lib\py3-windows-x86_64”
use the notepad++ if you need to change the voice or the speed of the voice,
default setup in the file is:
Speaker = "Microsoft Zira Desktop"
s.Rate = 6
It is weird to hear the narrator “David” voce doing female voices...
so now it is change to “Zira” and you can change the reading speed for your preference from -10 to 10.
Now you can hear ORGASM voices in Zira’s voice...
----------------------------------------------------------------------------
Code for "say.vbs":
Text = WScript.Arguments(0)
' --- VOICE MODIFICATION ---
' Set the narrator voice to your preference default is Zira
Speaker = "Microsoft Zira Desktop"
Volume = WScript.Arguments(2)
Set s = CreateObject("SAPI.SpVoice")
s.Volume = Volume
' --- SPEED MODIFICATION ---
' Set the narrator speed. The scale is -10 (slowest) to 10 (fastest).
s.Rate = 6
For Each Voice In s.GetVoices
I = I + 1
If InStr(Voice.GetDescription, Speaker) > 0 Then
Set s.Voice = s.GetVoices.Item(I-1)
Exit For
End If
Next
s.Speak Text
Last edited: