Reputation: 4190
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
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
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