How does the HTML5 Voice input on Chrome (Mac) get access to the mic? Is it because I have the google voice plugin installed?

Shouldn't the browser explicitly ask for permission before giving access?

http://slides.html5rocks.com/#speech-input

link|improve this question

69% accept rate
feedback

3 Answers

up vote 4 down vote accepted

The microphone isn't directly being exposed to the Web page—it's just posting the speech (and receiving text) through Google servers so it's not considered a security issue (and you have to click the microphone icon to start it). It's pretty similar to how voice input works on Android and Google's iPhone/Blackberry apps.

link|improve this answer
2  
But cant the field be hidden and the icon could be changed to look like another button? Also, how exactly is the script accessing the microphone? Is it a plug in like flash? – Ali Dec 6 '10 at 0:53
2  
It's not a plugin, it's built into the browser. That's why this doesn't work on any browser but Chrome (for now) – Jason Hall Dec 6 '10 at 0:55
5  
If the field's hidden, you can't click on it to trigger it. The icon can't be styled. – Nicholas Riley Dec 6 '10 at 0:56
" it's just posting the text"-no it is not! See this link:mikepultz.com/2011/03/accessing-google-speech-api-chrome-11 .U may edit ur answer! – rahulserver May 3 at 19:48
You're right — my answer was misleading. Fixed, thanks. – Nicholas Riley May 3 at 20:03
feedback

It is explicitly asking permission before giving access, that's what clicking the microphone icon is.

Think of it more like the <input type="file"> element -- you click "Browse", it shows you your file system, and the browser sends the selected file directly to the server.

link|improve this answer
feedback

For those saying that you can't style the button and it can't be exploited - it was done with Facebook like buttons - http://www.esrun.co.uk/blog/disguising-a-facebook-like-link/

So what's to stop it working for the Google Mic button?

link|improve this answer
1  
It's an input type="text" still, and the icon is hard-coded into webkit/chrome. The closest you can get to hiding the icon is by using a background gradient similar to -webkit-gradient(linear, 0 0, 0 bottom, from(#9A9A9A), to(#818181)). Even then, you have to click the button. – dynamism Jun 23 '11 at 11:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.