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

I want to record audio using javascript and html5, there is a device element in html5, but I do not know how to use it. No examples were found for this.

+6
source share
3 answers

There is no stable browser supported stream API (formally known as <device> ), so in practice, you cannot. The consequence of this is the lack of use cases.

If you want to play with it, you should use the Chrome development branches. Here is a demo version of voice input .

+12
source

A quick search returned https://labs.ericsson.com/developer-community/blog/beyond-html5-audio-capture-web-browsers , which contains the device element that you mentioned.

0
source

There are currently three ways to do this.

0
source

Source: https://habr.com/ru/post/888532/


All Articles