3.1.0 • Published 8 years ago

webrtc-sources v3.1.0

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

WebRTC Microphone Select

This is a Browser package that will request access to getUserMedia and then return the list of microphone devices that are available for use.

A device can then be selected, and then volume levels events are emitted.

Sample Code

var ms = new micselect();
var once = true;
ms.getMics();
ms.on('audioSources', function(as) {
  console.log(as);
  ms.setMic(as[0]);
  });
ms.on('volume', function(vol) {
  console.log(vol);
})
3.1.0

8 years ago

2.1.0

9 years ago

2.0.0

9 years ago

1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago