8218 Posted July 25, 2005 Posted July 25, 2005 Is it possible with SDK or something to do Voice Regonection with AutoIT? Or will i have to use C++?
seandisanti Posted July 25, 2005 Posted July 25, 2005 Is it possible with SDK or something to do Voice Regonection with AutoIT? Or will i have to use C++?<{POST_SNAPBACK}>anything is possible, but because the functions are not built into autoit (as far as i know) you're going to have to use external functions w/ COM or DLL's to do what you want. with the beta that's possible, but it's going to take some work and research on your part...
/dev/null Posted July 26, 2005 Posted July 26, 2005 Is it possible with SDK or something to do Voice Regonection with AutoIT? Or will i have to use C++?<{POST_SNAPBACK}>How would you do it in C++? If you can answer that question, then you will know the answer to your question as well.CheersKurt __________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *
erifash Posted July 26, 2005 Posted July 26, 2005 Oh! I have I voice recognition script that uses COM. Here: Run("notepad.exe", @SystemDir, @SW_MAXIMIZE) $RecoContext=ObjCreate("SAPI.SpSharedRecoContext") $SinkObject=ObjEvent($RecoContext,"Event_") $Grammar = $RecoContext.CreateGrammar(1) $Grammar.Dictationload $Grammar.DictationSetState(1) While WinActive("Untitled - Notepad") Sleep(10) Wend Exit Func Event_Recognition($StreamNumber,$StreamPosition,$RecognitionType,$Result) $t = $Result.PhraseInfo.GetText If $t = "select all" Then Send("^a") ElseIf $t = "backspace" Then Send("{BACKSPACE}") Else Send($t, 1) EndIf EndFunc I think it works, but you need a microphone. My UDFs:_FilePrint() | _ProcessGetName() | _Degree() and _Radian()My Scripts:Drive Lock - Computer Lock Using a Flash DriveAU3Chat - Simple Multiuser TCP ChatroomStringChunk - Split a String Into Equal PartsAutoProxy - Custom Webserver
seandisanti Posted July 27, 2005 Posted July 27, 2005 Could it be done with SDK?<{POST_SNAPBACK}>as far as i know, voice recognition is not included in any way into any of the windows operating systems. There are functions to record sound, but not compare it to anything etc. Microsoft does make a voice recognitions engine that i've seen implemented in a voice command software before, but since it's not part of their operating systems, i don't think it would be included in the Platform SDK documentation. I'll double check just in case, but i don't expect to find anything.
8218 Posted July 27, 2005 Author Posted July 27, 2005 as far as i know, voice recognition is not included in any way into any of the windows operating systems. There are functions to record sound, but not compare it to anything etc. Microsoft does make a voice recognitions engine that i've seen implemented in a voice command software before, but since it's not part of their operating systems, i don't think it would be included in the Platform SDK documentation. I'll double check just in case, but i don't expect to find anything.<{POST_SNAPBACK}>i just read this:http://www.martin2k.co.uk/vb6/tips/vb_10.phpsounds intresting?
seandisanti Posted July 27, 2005 Posted July 27, 2005 i just read this:http://www.martin2k.co.uk/vb6/tips/vb_10.phpsounds intresting?<{POST_SNAPBACK}>looks like that is DEFINITELY the way to go. the SDK i'm using is just the Platform SDK which covers all things windows...but that speech recognition SDK looks like it would have the documentation you need, and the dll's you'd have to work with to achieve your goal.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now