Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there any algorithms or libraries for C# that can be used to score user pronunciation?

For example something like Levenshtein distance for text but for speech.

Any related links or information about algorithms would be useful. I'm writing an application which needs something like speech recognition so it would be great if there were relevant C# libraries.

Of course, it would also be great if the library could do speech to text, preferably in many languages.

share|improve this question

1 Answer

up vote 3 down vote accepted

You can learn more about pronunciation algorithms from the papers

A method for measuring the intelligibility and nonnativeness of phone quality in foreign language pronunciation training Goh Kawai and Keikichi Hirose

http://www.shlrc.mq.edu.au/proceedings/icslp98/PDF/AUTHOR/SL980782.PDF

The SRI EduSpeakTM System: Recognition and Pronunciation Scoring Franco et al.

http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.6.7417&rep=rep1&type=pdf

I don't think any C# library for that exists but you can use existing speech recognition toolkit through wrappers (C library) or with IKVM (Java library). You can learn more about CMUSphinx speech recognition tookit from the tutorial

http://cmusphinx.sourceforge.net/wiki/tutorial

As an exapmle of the pronunciation evaluation implementation check Ottercall website:

http://ottercall.com/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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