Cross browser navigator.getUserMedia with a node api.
var getUserMedia = require('get-user-media');
getUserMedia({ audio: true }, function(err, stream) {
if (err) throw err;
// do something with the stream
});
Request user media based on given constraints
, which currently can be
{
audio: true,
video: true
}
Call fn
with the potential Error
and the resulting input stream.
Install with npm:
$ npm install get-user-media
Install with component(1):
$ component install juliangruber/get-user-media
MIT