Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Speech to Text api/library [closed]

Tags:

java

text

speech

What I need is an API/Library that will allow me to convert .wav files (or other media files is necessary) to their text equivalent. Does a library/api like this exist?

like image 795
user2612619 Avatar asked Dec 29 '13 18:12

user2612619


People also ask

Can Google speech API be used offline?

Speech recognition can be activated when typing on your Android device. If this facility is available in the app you are using, a microphone icon will appear on the keypad. Pressing this activates the speech recognition. Android does have offline speech recognition capabilities.

Why is Google text to speech not working?

If your Google Docs voice typing not working on Mac or Windows PC, it may be caused by the following reasons: Google Docs microphone access is not enabled. The microphone settings of Google Docs are incorrect. Your browser has not been updated to the latest version.

Which is the best Speech-to-Text API?

Google. Google Speech-to-Text is a well known speech transcription API.


2 Answers

If you'd have searched for java speech recognition, you would've found the Java Speech API or short JSAPI

like image 96
s3lph Avatar answered Oct 04 '22 21:10

s3lph


This is rather typical Question. Anyhow depending on the language you are using there may be many different choices.

Java http://voce.sourceforge.net/

PHP http://www.speechapi.com/ and http://cmusphinx.sourceforge.net/

Basically, the best option for you is to use some online cloud-based API, that will take your .wav input and return you the response in the text.

In this way, your API will be accessible from any language and will take a lot of pain out of your code.

like image 34
Talha Masood Avatar answered Oct 04 '22 20:10

Talha Masood