I am writting a spelling word application for my son and would like recomendations for good APIs that can be understood when it speaks. I am programming in .Net so something that will interop with that would be handy. Thanks in advance.
|
4
|
|
|
|
|
|
MS Speech SDK. It is exposed via a .NET assembly. Very easy to use. My kids loved it. Free.
The sounds generated by the code above do not use natural inflection, with pauses and so on. So with a complete sentence, it does not come out sounding human. But single words sound ok, just sort of robotic. For a little kid, with a small enough set of words, you might want to just record your own voice saying the words. I did that with a USA state puzzle, to pronounce the state names, rather than resort to the synthesizer. |
|||
|
|
Don't know why I didn't think of this before - This is the flow it goes through:
Here's some prototype source code that does it. This works on the .NET Framework 2.0, and also works on the .NET CF 2.0. It's just an illustration. It sort of naive about selecting the proper .wav file when there are multiple word forms and multiple pronunciations. If you ask for a plural form, you may not get it. Also you may want to add caching and additional exception handling to harden it. |
|||
