0.0.0 • Published 12 years ago
get-user-media v0.0.0
get-user-media
Cross browser navigator.getUserMedia with a node api.
Example
var getUserMedia = require('get-user-media');
getUserMedia({ audio: true }, function(err, stream) {
if (err) throw err;
// do something with the stream
});API
getUserMedia(constraints, fn)
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.
Installation
Install with npm:
$ npm install get-user-mediaInstall with component(1):
$ component install juliangruber/get-user-mediaLicense
MIT
0.0.0
12 years ago