Can I use CMUSphinx4 to decode a particular speech into phonemes and get those phonemes into further implementations?
Decode speech into Phonemes in Sphinx4
1.5k Views Asked by Sameera At
2
There are 2 best solutions below
1

Found this sample code that would take in a recognition result object and dump the phonemes :http://cmusphinx.sourceforge.net/wiki/sphinx4:unittimestamps
I found this paper to be very useful in understanding Sphinx4 : http://cmusphinx.sourceforge.net/sphinx4/doc/Sphinx4Whitepaper.pdf
Once I understood the architecture, I went through the list of packages found on the javadoc page.
Hope that helps. Good luck !
If you're using sphinx4 (beta 6), there is a method within the framework called getBestPronunciationResult()
Location: src/sphinx4/edu/cmu/sphinx/result/Result.java
Token.java is the class which does the actual work.
Hope this helps.