eddyuk
eddyuk

Reputation: 4190

Android - access microphone from web browser

Is the a way to access a microphone from web browser?

I want to create a web site where i want to record a user.

Workarounds and suggestions will be very appreciated! :)

Upvotes: 5

Views: 1833

Answers (2)

Usama Ahmed
Usama Ahmed

Reputation: 158

<device>

tag will give you access to webcam and micrphone. But unfortunately it is not yet implemented in any browser including Chrome.

Upvotes: 0

Rajdeep Dua
Rajdeep Dua

Reputation: 11230

You can use HTML5 tag x-webkit-speech to get this access

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

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

Upvotes: 1

Related Questions