![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
|
Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
br> br> |
| |||||||
![]() |
| | Thread Tools | Display Modes |
| | #1 (permalink) |
| Guest | 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 |
| | #2 (permalink) |
| Guest | 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 > > |
| | #3 (permalink) |
| Guest | 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 > > > > > > |
| | #4 (permalink) |
| Guest | 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 |
| | #5 (permalink) |
| Guest | 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 >> > >> > >> >> |
| | #6 (permalink) |
| Guest | 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 > |
| |
| |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Voice recognition | jackel06 | Vista General | 0 | 03-23-2008 10:43 PM |
| Shutting off voice commands in Vista Voice-Recognition used with W | zzz | Vista General | 1 | 01-05-2008 08:02 PM |
| voice recognition | Fabian | Vista installation & setup | 4 | 05-20-2007 01:05 PM |
| Voice recognition? | Martin Cleaver | Vista General | 0 | 04-25-2007 05:36 AM |
| how to use voice recognition | adam banasik | Vista General | 0 | 03-05-2007 01:23 PM |