How Do You Do Text To Speech In C Programming, Java, Or Visual Basic?
As far as I know, none of the languages you mentioned has built-in speech synthesis. Java has a Speech API, but the implementations are all independent. That means, if you develop an app, you must not only distribute your classes, but an implementation of the speech API as well. Docs on this can be found at: http://java.sun.com/products/java-media/… …shows the implementation known as of java 1.4 Other free/open-source libraries are listed at: http://www.babelfish.org/tts-free.htm Microsoft has a speech API in Windows, plus an interface to that API from .NET in the System.Speech.Synthesis namespace (framework 3.0 and later). Sample code in C#, VB.NET and managed C++ can be downloaded from codeproject (free membership signup required to download):