0.0.0 • Published 10 years ago

get-user-media v0.0.0

Weekly downloads
12
License
-
Repository
github
Last release
10 years ago

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-media

Install with component(1):

$ component install juliangruber/get-user-media

License

MIT