-
Notifications
You must be signed in to change notification settings - Fork 52
/
index.js
126 lines (84 loc) · 1.85 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
* Main classes and use
*
* @module NodeWebcam
*
*/
"use strict";
/**
* @class API
*
*/
var NodeWebcam = {
version: "0.4.1",
REVISION: 4,
Factory: require( "./src/Factory.js" ),
Webcam: require( "./src/Factory.js" ),
FSWebcam: require( "./src/webcams/FSWebcam.js" ),
ImageSnapWebcam: require( "./src/webcams/ImageSnapWebcam.js" ),
WindowsWebcam: require( "./src/webcams/WindowsWebcam.js" )
};
//API
/**
* Main create
*
* @method create
*
* @param {Object} options
*
*/
NodeWebcam.create = function( options ) {
return NodeWebcam.Factory.create( options );
};
/**
* Quick capture helper
*
* @method capture
*
* @param {String} location
* @param {Object} options
* @param {Function} callback
*
*/
NodeWebcam.capture = function( location, options, callback ) {
var webcam = NodeWebcam.create( options );
webcam.capture( location, callback );
return webcam;
};
/**
* Camera list helper
*
* @method list
*
* @param {Function(Array<String>)} callback
*
*/
NodeWebcam.list = function( callback ) {
var cam = NodeWebcam.create({});
cam.list(callback);
};
/**
* @typedef CameraControl
* @type {Object}
* @param {String} name Control name, as it should appear in the setValues object
* @param {String} type Either "range" or "list"
* @param {Number} min For "range" controls, minimum control value
* @param {Number} max For "range" controls, maximum control value
* @param {Array(<String>)} opts For "list" controls, available control options
*
*/
/**
* Camera options helper
*
* @method listControls
*
* @param {String} device
* @param {Function(Array<CameraControl>)} callback
*
*/
NodeWebcam.listControls = function( device, callback ) {
var cam = NodeWebcam.create({device});
cam.listControls(callback);
};
//Export
module.exports = NodeWebcam;