You are reading help file online using chmlib.com
|
Object: SpVoice (Events)
The Viseme event occurs when the text-to-speech (TTS) engine detects a viseme boundary while speaking a stream for the SpVoice object.
SpVoice.Viseme(
StreamNumber As Long,
StreamPosition As Variant,
Duration As Long,
NextVisemeId As SpeechVisemeType,
Feature As SpeechVisemeFeature,
CurrentVisemeId As SpeechVisemeType
)
The following Visual Basic form code demonstrates the Viseme event. To run this code, create a form with the following controls:
Paste this code into the Declarations section of the form.
The Form_Load procedure puts a text string in Text1 and creates a voice object. The command1_Click procedure calls the Speak method. This will cause the TTS engine to send the Viseme event to the voice. The Viseme event code will display the viseme values in Text2.
Option Explicit
Public WithEvents vox As SpeechLib.SpVoice
Private Sub Command1_Click()
vox.Speak Text1.Text, SVSFlagsAsync
End Sub
Private Sub Form_Load()
Set vox = New SpVoice
Text1.Text = "This is text in a text box."
End Sub
Private Sub vox_Viseme(ByVal StreamNumber As Long, ByVal StreamPosition As Variant, ByVal Duration As Long, ByVal NextVisemeId As SpeechLib.SpeechVisemeType, ByVal Feature As SpeechLib.SpeechVisemeFeature, ByVal CurrentVisemeId As SpeechLib.SpeechVisemeType)
Text2.Text = Text2.Text & CurrentVisemeId & " "
End Sub
You are reading help file online using chmlib.com
|