|
-
May 16th, 2001, 09:37 AM
#1
Thread Starter
New Member
SAPI: can I recognize speech from a WAV?
I'm completely new to SAPI, and have a very simple voice dictation control working on a sample form.
However, what I really want is to be able to take the input from a WAV file, rather than from a microphone.
I'm using the Microsoft VDict voice dictation control. So far, so easy:
Private Sub Form_Load()
Vdict1.Mode = 32
Vdict1.Activate
End Sub
Private Sub Vdict1_PhraseFinish(ByVal flags As Long, ByVal phrase As String)
Text1.Text = Text1.Text & " " & phrase
End Sub
However, I don't see any obvious method for telling Vdict to get its audio from a file rather than the microphone.
Please help! Many thanks!
[note: I posted this in the main forum, but it seems more appropriate here. sorry for the duplication]
j
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|