get-user-media

0.0.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i get-user-media

Weekly Downloads

16

Version

0.0.0

License

MIT

Last publish

Collaborators

  • juliangruber