vote up 3 vote down star
2

I'm planning on writing a program for Linux that uses text to speech and speech recognition. What are the best tools/libraries for this? Should I use Windows instead to be able to use better tools? The tools need to be easily callable from a console or C program.

flag

7 Answers

vote up 1 vote down check

For speech recognition there are the various Sphinxes. The different variants have different pros and cons, there is a comparison here Comparison of Sphinx versions. Sphinx 4 is Java, but the others are C, I believe.

link|flag
vote up 3 vote down

For speech recognition there exists very little for linux. I were only aware of one apparently decent option, something IBM released some years ago but later was no longer made available (anyone knows if this ViaVoice SDK is still possible to get hold of from anywhere?). There are some more information about possible options at wikipedia.

link|flag
ViaVoice SDK. It was never in full release, and the docs demanded a fairly narrow range on 2.4 kernel release numbers. I toyed around with it for taking some typing load off when I had intermittent tedonitis in my wrists, but no luck... – dmckee May 18 at 14:53
vote up 3 vote down

It depends quite a bit on what speech you are trying to recognize.

This is an article from 2005 that explains some of the difficulties in creating a dictation program: http://www.cs.cmu.edu/~archan/personal/whyNoOpenSourceDictationDraft4.html . If you want that, the Julius speech recognition engine seems promising, but you will need to add your own acoustic and language models. You might be able to use the voxforge acoustic model.

If you are not trying to write a dictation program then you have a much easier task. Command programs have limited vocabularies, for example 'If you would like to continue in English, say "English"'.

I was able to get pretty good results using pocketsphinx and gstreamer to make a program that automatically edits most occurrences of the word "twitter" out of the TWiT podcast. It didn't work at all until I used my own language model based on transcripts of the podcast; the machine transcriptions from the speech recognizer are useless/hilarious but they do an okay job of finding the keyword.

link|flag
do you have any experience with using pocketsphinx and gstreamer with the tcpserversrc/client? – blackkettle Aug 26 at 14:53
no, but gstpocketsphinx + tcpserversrc/sink shouldn't be any different than any other gstreamer element + tcpserversrc/sink. – joeforker Aug 26 at 15:06
vote up 2 vote down

I have used both Loquendo and Festival under linux. I would consider the festival voices I have used pretty poor, with very robotic synthesis. The Loquendo voices, on the other hand, are excellent - very high quality.

link|flag
If you are going to use Festival, you should install the alternate voices. Instructions (for debian/ubuntu) are here: ubuntuforums.org/showthread.php?t=677277 – Matt G May 18 at 13:57
You just like leaving us hanging don't you? Of course there are what? – Chas. Owens May 18 at 14:04
vote up 0 vote down

I know espeak is a very good text-to-speech program for linux (it can even do different accents!), but I don't know of any speech recognition systems designed for UNIX.

link|flag
vote up 0 vote down

Check here for an article about speech synthesis under Linux http://www.freeos.com/articles/2613/.

link|flag
that was posted almost 10 years ago – Cory Walker May 19 at 0:29
vote up 0 vote down

at&t fsm toolkit is also pretty awesome - no commercial use allowed though,

http://www.research.att.com/~fsmtools/fsm/

link|flag

Your Answer

Get an OpenID
or

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