Speech to convert php, javascript or flash text online

I know php well and I use javascript and jquery, but it seems I don’t know how to make speech to convert text with them, but I know that there are a lot of flash speech recognition api, but I would like faster, I would like would use a script for this, which can accurately use your voice and convert it to text. Thanks a lot, Anonymous.

0
javascript jquery php speech-recognition
source share
3 answers

If your goal is speech recognition from an html page, you can look at other alternatives. Chrome supports speech recognition for text input. See http://slides.html5rocks.com/#speech-input and http://www.filosophy.org/2011/03/talking-to-the-web-the-basics-of-html5-speech-input / .

The following tags are used for speech recognition:

<input type="text" speech x-webkit-speech /> 

I believe that Chrome is the only browser that currently supports this. http://tomlerendu.com/tutorial/how-to-use-html-5-speech-input/ has a good example and shows

 if( document.createElement('input').webkitSpeech==undefined ) { //no speech support } 

as a means of verifying speech recognition compatibility.

Historically, other approaches. Opera implemented another solution, but it looks like they no longer support it - http://dev.opera.com/articles/view/getting-to-know-voice/ .

Another approach that has been used is to use a java applet or flash application that communicates with the back end of speech recognition. WAMI is a good example of this - http://wami.csail.mit.edu/ . These approaches use a rich client (Java or Flash or another plug-in) to capture speech and send it to a server or some local speech engine for processing.

+2
source share

In html 5, trere is a tag you can do with this.

Read: link1 link2

+1
source share

You can take a look at speechapi.com and build yourself what you need, but if it is the other way around, text to speech, speak.js will do it.

Hope this helps.

0
source share

All Articles