Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

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.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > Avalon

True Voice Recognition on WinFX

Closed Thread
 
Thread Tools Display Modes
Old 03-21-2006   #1 (permalink)
Sebastian
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


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


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

>
>

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


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

>>
>>



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



Closed Thread

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








Vistax64.com 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 2005-2008

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 47 48 49 50