gumadapter

1.0.1 • Public • Published

getUserMedia Adatper

Copyrights goes to:

npm downloads

navigator.getUserMedi is upgraded into promises based API: navigator.mediaDevices.getUserMedia.

This shim/polyfill merely helps handling cross-browser issues.

Check all releases:

How to link?

<script src="https://cdn.WebRTC-Experiment.com/gumadapter.js"></script>

It is suggested to link specific release:

E.g.

<!-- use 5.2.4 or any other version -->
<script src="https://github.com/muaz-khan/gumadapter/releases/download/1.0.1/gumadapter.js"></script>

How to use?

function successCallback(stream) {
    video.srcObject = stream;
}
 
function errorCallback(error) {
    // maybe another application is using the device
}
 
var mediaConstraints = { video: true, audio: true };
 
navigator.mediaDevices.getUserMedia(mediaConstraints).then(successCallback).catch(errorCallback);

Package Sidebar

Install

npm i gumadapter

Weekly Downloads

4

Version

1.0.1

License

MIT

Last publish

Collaborators

  • muaz-khan