html5 - Accessing the microphone in android browser on mobile devices -


is there anyway use default microphone on android keyboard on mobile devices voice recognition on input field?

for example, when click input field has

<input type ="tel" value=""> 

it brings android keyboard numbers. there similar able do

<input type="microphone" value ="">  

and bring android keyboard "speak now" speech recognition. once done speaking fill in input field spoken words.

i have tried other alternative flash not work well. also, tried

<input type="file" accept="audio/*;capture=microphone"></input>   

but records voice no speech text translation.

chrome supports speech recognition text input. see http://slides.html5rocks.com/#speech-input , http://www.filosophy.org/2011/03/talking-to-the-web-the-basics-of-html5-speech-input/. these use following tag speech recognition:

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

however, don't believe supported android browser.

most web pages text inputs automatically display microphone on keyboard speech recognition. if using custom keyboard instead of stock keyboard, may not see this.

of course, can force recognizer used in native java app. don't think can force in web page.

enter image description here.


Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -