Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
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.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - True Voice Recognition on WinFX

 
 
Old 03-21-2006   #1 (permalink)
Sebastian


 
 

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 SpecsSystem Spec
Old 03-22-2006   #2 (permalink)
Andrew Ahearne


 
 

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 SpecsSystem Spec
Old 03-22-2006   #3 (permalink)
Sebastian


 
 

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 SpecsSystem Spec
Old 03-22-2006   #4 (permalink)
roman modic


 
 

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 SpecsSystem Spec
Old 03-23-2006   #5 (permalink)
Andrew Ahearne


 
 

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 SpecsSystem Spec
Old 03-23-2006   #6 (permalink)
Andrew Ahearne


 
 

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 SpecsSystem Spec
 

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


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46