How to convert speech to text in java?

Can anyone use the code snippet used to convert speech to text in Java.

+4
source share
4 answers

Check out this question.

Java: a review for text engines

-3
source

Speech recognition is not an easy task. Oracle offers an API.

The Java Speech API allows Java applications to incorporate speech technology into their user interfaces. It defines a cross-platform API to support command and control recognizers, dictation systems, and speech synthesizers.

You can view the full documentation here.

+4

This is much easier if you use Python for conversion. You can use Python as an external service for your application to do the conversion.

0
source

Source: https://habr.com/ru/post/1777181/


All Articles