Click here to Skip to main content
15,890,717 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
hi,,,
how do i add "PAUSE" option in "text to speech" app..
& is it possible to convert speech to text....?????
m using Visual studio 2010 ,,,(WPF)....

thnx..
Posted
Comments
OriginalGriff 21-Jun-11 3:33am    
Please do not post the same question twice with just a single character difference, use the "Improve question" widget to edit your question instead: I have deleted the "spare"

It's possible to convert speech to text, a Microsoft API works, I bet it doesn't work very well, and especially poorly if you don't speak English with an American accent. Speech to text always requires training in any case. For pausing, have you read the docs ? Did you consider posting some code ? Either you need to know what word is being read, so you can stop, and resume from that word, or the object you're using needs to have a Pause method or similar.
 
Share this answer
 
You can use speech to text if you're using the grammar with just few words. Microsoft System.Speech works pretty well.

You can also use DictationGrammar to dictate arbitrary text, but the results are frustrating.

To evaluate it, see my code sample here (no, you cannot improve it; the qualify of the engine is a problem not this code): speech recognition in C#[^].

At the same time, more or less smooth dictation is possible. You need to buy original Nuance product "Dragon Naturally Speaking". These days, there is only one company on the market. See http://www.nuance.com/talk/[^].

Disclaimer. I have no affiliation with the company Nuance and no interest in distributing, promoting or advertising their products.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900