imagesnapjs
v0.0.7
Published
An npm/nodejs wrapper for imagesnap
Downloads
20
Maintainers
Readme
imagesnapjs
An npm/nodejs wrapper for imagesnap
imagesnap is an OSX tool for capturing webcam photos from the command line, written by Robert Harder. (Thanks!)
imagesnapjs is first a wrapper, for making imagesnap installation as easy as npm i -g imagesnapjs
,
and second, an npm dependency for capturing webcam shots from nodejs applications.
As a command line tool
Installation
$ npm install -g imagesnapjs
#####Usage
see the original documentation or just type imagesnap -h
.
As an npm module
Installation
$ npm install --save imagesnapjs
Usage
var imagesnapjs = require('imagesnapjs');
imagesnapjs.capture('/Users/dany/image.jpg', { cliflags: '-w 2'}, function(err) {
console.log(err ? err : 'Success!');
});
The second options parameter is optional, and can include a
cliflags
value of additional command line flags to be passed to the imagesnap command execution.
Notes
- this is OSX specific! execution of the binary will fail on other systems.
- Using imageSnap v0.2.5
Feedback
- If you enjoyed this package, please star it on Github.
- You are invited to Open an issue on Github.
- For other matters, my email address can be found on my NpmJS page, my Github page, or my website.
- Provide feedback or support for imageSnap itself from imageSnap's page.