Speech to text conversion in Linux - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:05:29Zhttp://stackoverflow.com/feeds/question/454664http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/454664/speech-to-text-conversion-in-linux2Speech to text conversion in LinuxVinay2009-01-18T04:35:08Z2009-11-03T05:12:56Z
<p>I am planning to start an application which converts the speech to text in Linux.
Are there any existing interfaces so that I can extend them?
or Is there any such existing application in Linux?
Any inputs on this?</p>
<p>EDIT: The application that I am planning to write should be able convert every word that we speak to text, not just the Yes/No.</p>
http://stackoverflow.com/questions/454664/speech-to-text-conversion-in-linux/454669#4546695Answer by Dave Ray for Speech to text conversion in LinuxDave Ray2009-01-18T04:44:11Z2009-01-18T04:44:11Z<p>Well, this is quite an undertaking and without saying what technology you want to use, here are some links:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Speech_recognition" rel="nofollow">Speech Recognition</a> on Wikipedia</li>
<li><a href="http://java.sun.com/products/java-media/speech/" rel="nofollow">Java Speech API</a></li>
<li><a href="http://www.w3.org/TR/speech-grammar/" rel="nofollow">W3C Speech Recognition Grammar Specification</a></li>
<li><a href="http://cmusphinx.sourceforge.net/sphinx4/" rel="nofollow">Sphinx</a> - An open source recognition engine written in Java</li>
</ul>
<p>Good luck. With more detail, we may be able to provide better answers. For example, there's a big difference between "yes/no" call center-style recognition vs. even partial natural language understanding.</p>
http://stackoverflow.com/questions/454664/speech-to-text-conversion-in-linux/454754#4547542Answer by Robert Elwell for Speech to text conversion in LinuxRobert Elwell2009-01-18T06:53:39Z2009-01-18T06:53:39Z<p>Dave's suggestions are a great start. Sphinx is very nifty.</p>
<p>I just want to add that you should be as probabilistic as possible. As a one-time linguist and even earlier one-time phonology buff, I can confidently say don't get caught up with linguistic models. Let's not forget the oft misattributed "every time I fire a linguist my accuracy goes up". It's really about the model and its capabilities to account for noise and variation rather than anything a liberal arts major from MIT has to say.</p>
<p>A good book to pick up would be Jurafsky and Martin's "Speech and Language Processing". It has some very useful applications of computational models for the task. Harvey Sussman's work on linear correlates in the F2 slopes for a variety of vowels (starting with barn owls and working its way towards humans) seems like it would be a nice thing to implement in a model one of these days.</p>
http://stackoverflow.com/questions/454664/speech-to-text-conversion-in-linux/478938#4789381Answer by braindead for Speech to text conversion in Linuxbraindead2009-01-26T06:02:01Z2009-01-26T06:02:01Z<p>Sphinx is your best bet on linux. I have tried Sphinx II and Sphinx III. There are some open source language and acoustic models available which can be used with each one of them. Not a production level performance at all, but good enough for prototyping or demo. For production, you'll need to develop your own language and acoustic models.</p>
http://stackoverflow.com/questions/454664/speech-to-text-conversion-in-linux/1665361#16653610Answer by Latrokles for Speech to text conversion in LinuxLatrokles2009-11-03T05:12:56Z2009-11-03T05:12:56Z<p><a href="http://julius.sourceforge.jp/en%5Findex.php" rel="nofollow">Julius</a> is also a good option for Linux</p>