Seshu
Seshu

Reputation: 15

how to record audio file in browser except Recorder.js

i want to record audio file in browser except recorder.cs , why because if i use recorder.js means it is not working in Google chrome browser after deploying application in IIS webserver .

Upvotes: 2

Views: 472

Answers (1)

Adrian Grzywaczewski
Adrian Grzywaczewski

Reputation: 888

navigator.getUserMedia() API

is what you need.

With that API you can record audio and video just by using html and javascript. The library is widely used to record video/audio or take snapshots.

I don't want to copy and paste the code from other websites so, all the code that you will need you can find under the links below.

Support: enter image description here

Upvotes: 1

Related Questions