Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can anyone suggest how to record audio from microphone on a website using html5 and javascript

I want to record audio using javascript and html5, there is device element in html5 but i dont know to use it. Found no examples for the same.

like image 789
rudedude Avatar asked May 19 '11 11:05

rudedude


People also ask

How do I record audio from a website?

One of the best ways to record audio on a website is to use a Chrome Extension like Audio Capture. This tool can be easily installed on the browser, ready to use whenever you need to record audio on any tab. It also allows you to mute all other tabs to avoid accidently recording them as well.


1 Answers

No current stable browser supports the Stream API (formally known as <device>), so in practical terms — you can't. The lack of examples using it is a consequence of this.

If you want to play with it, you have to use development branches of Chrome. There is a demo of voice input here.

like image 127
Quentin Avatar answered Sep 22 '22 14:09

Quentin