npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

get-user-media

0.0.0

@juliangruber

npmHomeRepoSnykSocket
Downloads:6
$ npm install get-user-media
DailyWeeklyMonthlyYearly

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