Search code examples
clojurespeech-recognitionlibrariestext-to-speechspeech-synthesis

what text to speech and speech recognition libraries are available for Clojure?


what text to speech and speech recognition libraries are available for Clojure? So far I have found

https://github.com/klutometis/speech-recognition

https://github.com/klutometis/speech-synthesis

both of these use Google and thus depend of the web.

I'm looking for ones that don't depend on the internet to work


Solution

  • I think this is a pretty much unexplored territory as far as existing Clojure libraries go.

    Your best bet is probably to look at the many available Java speech recognition libraries and use them from Clojure - they are going to be much more mature and capable at this point.

    You may want to look at:

    Using Java libraries from Clojure is extremely easy - it is generally as simple as importing the right classes and doing (.someMethod someObject arg1 arg2)

    If you do create a Clojure wrapper for a speech recogniser, please do contribute it back to the community! I know quite a few people (myself included) would be interested in doing some speech-related work in Clojure.