up vote 1 down vote favorite
share [g+] share [fb]

Are there any free text-to-speech libraries available for Windows Mobile? Preferably with a C# (.net CF) API.

Edit: It basically needs to be able to read from 0.001 to 999 and a few words like “kilometers, minutes, behind, ahead” Sample phrases:

  • “1 minute 30 seconds behind”
  • “3.45 kilometers left”

I have no need for more advanced sentences.

link|improve this question

80% accept rate
1  
What's your scenario? Are you doing full SSML, with tone, diction, and cadence? or do you just want to pronounce a single word here and there? – Cheeso Jun 11 '09 at 17:34
feedback

4 Answers

Text-to-Speech is a big, interesting problem.

Seems to me, though, that you have a very specific requirement. You have a vocabulary of about 12 words, if I understand correctly. There's no way a generalized tts solution is recommended for that scope of vocabulary. Using recorded sounds seems like a much better solution.

I don't know the cut-off for the number of words, where the TTS is recommended. But it's higher than 12 words.

link|improve this answer
feedback
up vote 0 down vote accepted

Since i haven’t found any free library I decided to go with a bunch of generated wav files recorded using the SpeechSynthesizer on a desktop computer. So I’m actually using the MS Anna voice and might replace it if my app grow large enough or bump into some legal issues.

I’m combining multiple wav files to produce the numbering:

“34.5 kilometers left” = 30.wav + 4.wav + Point.wav + 5.wav + kilometers.wav + left.wav.

link|improve this answer
feedback

I don't know the cost or even if you could use it on WM but I came across the AT&T TTS a while back and thought it might be interesting to look at for a future project.

http://www.research.att.com/~ttsweb/tts/demo.php

link|improve this answer
feedback

Here's an interesting article about text-to-speech on Windows Mobile. The author has not made the source code available, but according to him one should be able to replicate what he did from the article.

link|improve this answer
Thats speech recognition (speech-to-text), not text-to-speech. – JMD Jun 13 '09 at 19:18
You're absolutely right! Why didn't I notice that before? – Tom van Enckevort Jun 14 '09 at 12:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.