Skip to content

max-mapper/domnode-usermedia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

domnode-usermedia

npm install mediastream

use HTML5 WebRTC the node way -- with streams

var media = mediastream({video: true})

media is a readable stream and speaks stream events: data, error and end. that means you can pipe media output to anything that accepts streams, such as an XHR. in this case the data events will be DataURI representations of the user's webcam frame captures

limitations

browsers only let you get webcam video right now (even though you can include audio: true in the options there is no way to capture the audio)

to generate demo-bundle.js using browserify:

npm install browserify -g
browserify demo.js -o demo-bundle.js

MIT LICENSE

About

use HTML5 WebRTC getUserMedia the node way -- with streams

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published