![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
| |
| | #1 (permalink) |
| | True Voice Recognition on WinFX Hello, I see that true voice recognition are bundled on Microsoft WinFX. If i will install WinFX on XP SP2, obviously can we access to speech recognition from WinFX apps right?. Then how can i access to this feature (ASR) from WinFX.? Are in Fubrary TCP supported? Can anyone put in your MSDN blog, a simple example of voice recognition in WinFX XAML apps? Spanish language will be available on WinFX in the future? Thank's a lot |
My System Specs![]() |
| | #2 (permalink) |
| | Re: True Voice Recognition on WinFX Hi Sebastian, Yes the WinFX Speech API is available on XP SP2. In order to use it though you will need to have a Speech Recognition Engine installed which you can get either from Microsoft Office or the Win32 Speech API http://www.microsoft.com/speech/download/sdk51/. It is actually quite straightforward to start working with. Irena Kennedy has a blog post giving a small demo. http://blogs.msdn.com/irenak/archive...15/532530.aspx HTH, Andrew "Sebastian" <Sebastian@discussions.microsoft.com> wrote in message news:EF5393FB-6F2E-46FA-AD82-809484E4749B@microsoft.com... > Hello, > > I see that true voice recognition are bundled on Microsoft WinFX. > If i will install WinFX on XP SP2, obviously can we access to speech > recognition from WinFX apps right?. > > Then how can i access to this feature (ASR) from WinFX.? > Are in Fubrary TCP supported? > Can anyone put in your MSDN blog, a simple example of voice recognition in > WinFX XAML apps? > > Spanish language will be available on WinFX in the future? > > Thank's a lot > > |
My System Specs![]() |
| | #3 (permalink) |
| | Re: True Voice Recognition on WinFX Hello: I'm developing an Artificial Intelligence (with AIML, Artificial Intelligence Markup Language) Chatterbot (Robot) with learning feature for a particular proyect. (The program need AI) In the MSDN voice recognition sample says: <rule id=PhoneCommands" scope="public"> <one-of> <item> purchase new phone <tag>synthisizerAction="PurchaseNewPhone"</tag> </item> <item> reuse existing phone <tag>synthisizerAction="ReusePhone"</tag> </item> </one-of> </rule> phoneGrammer.SpeechRecognized += new EventHandler<RecognitionEventArgs>(PhoneGrammer_SpeechRecognized); void PhoneGrammer_SpeechRecognized(object sender, RecognitionEventArgs e) { switch((string) e.Result.Semantics["synthesizerAction"].Value) { case "PurchaseNewPhone": // TODO: Show new phone purchase form break; case "ReusePhone": // TODO: Show existing phone re-purposing form break; } } **Only need recognice the voice and put in a textbox or varible to read, it's possible?*** What is the variable in this small code that store the recognized voice String? thank's a lot "Andrew Ahearne" wrote: > Hi Sebastian, > > Yes the WinFX Speech API is available on XP SP2. In order to use it though > you will need to have a Speech Recognition Engine installed which you can > get either from Microsoft Office or the Win32 Speech API > http://www.microsoft.com/speech/download/sdk51/. > > It is actually quite straightforward to start working with. Irena Kennedy > has a blog post giving a small demo. > http://blogs.msdn.com/irenak/archive...15/532530.aspx > > HTH, > Andrew > > "Sebastian" <Sebastian@discussions.microsoft.com> wrote in message > news:EF5393FB-6F2E-46FA-AD82-809484E4749B@microsoft.com... > > Hello, > > > > I see that true voice recognition are bundled on Microsoft WinFX. > > If i will install WinFX on XP SP2, obviously can we access to speech > > recognition from WinFX apps right?. > > > > Then how can i access to this feature (ASR) from WinFX.? > > Are in Fubrary TCP supported? > > Can anyone put in your MSDN blog, a simple example of voice recognition in > > WinFX XAML apps? > > > > Spanish language will be available on WinFX in the future? > > > > Thank's a lot > > > > > > |
My System Specs![]() |
| | #4 (permalink) |
| | Re: True Voice Recognition on WinFX Hello! "Andrew Ahearne" <andrew@news.microsoft.com> wrote in message news:OQB2rtaTGHA.5828@TK2MSFTNGP14.phx.gbl... > Hi Sebastian, > > Yes the WinFX Speech API is available on XP SP2. In order to use it though you will need to have a Speech Recognition Engine > installed which you can get either from Microsoft Office or the Win32 Speech API http://www.microsoft.com/speech/download/sdk51/. > > It is actually quite straightforward to start working with. Irena Kennedy has a blog post giving a small demo. > http://blogs.msdn.com/irenak/archive...15/532530.aspx > Does this mean that I can convert MP3 recorded speech to text? Roman |
My System Specs![]() |
| | #5 (permalink) |
| | Re: True Voice Recognition on WinFX Hi Sebastian, could you give me a more complete idea of what you want to do. Is it free text recognition, or recognition using a finite grammar? Both are possible but obviously using the finite grammar will lead to better recognition. If you want to get the spoken phrase then it's e.Result.Text "Sebastian" <Sebastian@discussions.microsoft.com> wrote in message news:BA17E822-1315-4EC5-8158-69FCF266B859@microsoft.com... > Hello: > > I'm developing an Artificial Intelligence (with AIML, Artificial > Intelligence Markup Language) Chatterbot (Robot) with learning feature for > a > particular proyect. (The program need AI) > > In the MSDN voice recognition sample says: > > <rule id=PhoneCommands" scope="public"> > <one-of> > <item> purchase new phone > <tag>synthisizerAction="PurchaseNewPhone"</tag> </item> > <item> reuse existing phone > <tag>synthisizerAction="ReusePhone"</tag> </item> > </one-of> > </rule> > > phoneGrammer.SpeechRecognized += new > EventHandler<RecognitionEventArgs>(PhoneGrammer_SpeechRecognized); > > void PhoneGrammer_SpeechRecognized(object sender, RecognitionEventArgs e) > { > switch((string) e.Result.Semantics["synthesizerAction"].Value) > { > case "PurchaseNewPhone": > // TODO: Show new phone purchase form > break; > case "ReusePhone": > // TODO: Show existing phone re-purposing form > break; > } > } > > > **Only need recognice the voice and put in a textbox or varible to read, > it's possible?*** > > What is the variable in this small code that store the recognized voice > String? > > thank's a lot > > > > "Andrew Ahearne" wrote: > >> Hi Sebastian, >> >> Yes the WinFX Speech API is available on XP SP2. In order to use it >> though >> you will need to have a Speech Recognition Engine installed which you can >> get either from Microsoft Office or the Win32 Speech API >> http://www.microsoft.com/speech/download/sdk51/. >> >> It is actually quite straightforward to start working with. Irena Kennedy >> has a blog post giving a small demo. >> http://blogs.msdn.com/irenak/archive...15/532530.aspx >> >> HTH, >> Andrew >> >> "Sebastian" <Sebastian@discussions.microsoft.com> wrote in message >> news:EF5393FB-6F2E-46FA-AD82-809484E4749B@microsoft.com... >> > Hello, >> > >> > I see that true voice recognition are bundled on Microsoft WinFX. >> > If i will install WinFX on XP SP2, obviously can we access to speech >> > recognition from WinFX apps right?. >> > >> > Then how can i access to this feature (ASR) from WinFX.? >> > Are in Fubrary TCP supported? >> > Can anyone put in your MSDN blog, a simple example of voice recognition >> > in >> > WinFX XAML apps? >> > >> > Spanish language will be available on WinFX in the future? >> > >> > Thank's a lot >> > >> > >> >> |
My System Specs![]() |
| | #6 (permalink) |
| | Re: True Voice Recognition on WinFX Theoretically yes. "roman modic" <modicr@astral-it.com> wrote in message news:uIKNGCeTGHA.1576@tk2msftngp13.phx.gbl... > Hello! > > "Andrew Ahearne" <andrew@news.microsoft.com> wrote in message > news:OQB2rtaTGHA.5828@TK2MSFTNGP14.phx.gbl... >> Hi Sebastian, >> >> Yes the WinFX Speech API is available on XP SP2. In order to use it >> though you will need to have a Speech Recognition Engine installed which >> you can get either from Microsoft Office or the Win32 Speech API >> http://www.microsoft.com/speech/download/sdk51/. >> >> It is actually quite straightforward to start working with. Irena Kennedy >> has a blog post giving a small demo. >> http://blogs.msdn.com/irenak/archive...15/532530.aspx >> > > Does this mean that I can convert MP3 recorded speech to text? > > Roman > |
My System Specs![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| voice recognition | Vista hardware & devices | |||
| Voice Recognition | Vista installation & setup | |||
| Voice Recognition Help | General Discussion | |||
| Shutting off voice commands in Vista Voice-Recognition used with W | Vista General | |||
| Voice recognition | Vista General | |||