How do I make the SAPI TTS talk faster? [from Discord] | ALSO: Can we add a keyboard shortcut to directly toggle SAPI? #1290
Closed
KVonGit
started this conversation in
Developing Quest
Replies: 2 comments 1 reply
-
I don't see an easy way to make this happen. Closing this. It will still be here for future reference (although it won't help much, anyway). |
Beta Was this translation helpful? Give feedback.
0 replies
-
Lines 635 to 644 in 5782f9f Private Sub Speak(text As String) Implements IPlayer.Speak
text = StripTags(text)
BeginInvoke(Sub()
If UseSAPI Then
m_speech.SpeakAsync(text)
Else
JawsApi.JawsApi.JFWSayString(text, False)
End If
End Sub)
End Sub Okay... I definitely need to study up on this stuff... It looks like SAPI is one option, and JAWS is another. https://learn.microsoft.com/en-us/previous-versions/windows/desktop/ms717077(v=vs.85) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
https://www.vbforums.com/showthread.php?567803-RESOLVED-Text-to-Speech-speed
(That's not quite it, but it might provide the hint I need to figure this out.)
quest/JawsApi/JawsApi.cs
Line 7 in 5782f9f
quest/Quest/Options.vb
Line 46 in 5782f9f
quest/Quest/OptionsDialog.vb
Line 29 in 5782f9f
quest/Quest/Main.vb
Line 189 in 5782f9f
quest/Player/Player.vb
Lines 635 to 644 in 5782f9f
quest/Quest/OptionsDialog.Designer.vb
Line 32 in 5782f9f
quest/Quest/Main.Designer.vb
Line 50 in 5782f9f
Beta Was this translation helpful? Give feedback.
All reactions