tags:

views:

121

answers:

2

Hy my name is Joey and i would like to know if there is a way to use speech in C++ if so can someone point me to references and books deeply appreciated...

A: 

In what way do you want to use speech? as in text to speech or speech recognition?

Mike Lowen
I want to make it talk.like text to speech
+2  A: 

You should look at the Windows Text-To-Speech API - a COM-based API that can be used from C++. You would need to download the Speech API 5.3 SDK as a DVD ISO or through a guided install of only the components you need..

As a side note, there's also a managed speech API in .Net 3.0 residing in the System.Speech namespace.

Franci Penov