Options for free (and preferably open source) speech to text library

13,958

Solution 1

You can use the Sphinx like kdazzle has suggested for you or you can also check out other java implementation here.

For python library, check out pyspeech or dragonfly. If the library can output the text, I think the library should be possible to print out the text into a file.

Solution 2

Sphinx is pretty good. It's made by the folks at Carnegie Mellon.

Share:
13,958
Soumya Simanta
Author by

Soumya Simanta

Updated on June 05, 2022

Comments

  • Soumya Simanta
    Soumya Simanta almost 2 years

    Looking for a library (with Java or Python APIs) that converts speech to text. 100% accuracy is not an absolute requirement because I just need to run some experiments for a prototype. Ideally it should accept an input file (e.g., .wav) and return the output as text.

    Thanks.