├── .gitignore ├── README.md ├── binding.gyp ├── index.js ├── package.json ├── src ├── capture.m └── capture_module.cc ├── test └── test.js └── v4l2 ├── .gitignore ├── .travis.yml ├── LICENSE-LGPL-3.0.txt ├── LICENSE-MIT.txt ├── binding.gyp ├── c-examples.makefile ├── c-examples ├── capture-jpeg.c ├── list-controls.c └── list-formats.c ├── capture.c ├── capture.h ├── examples ├── capture-native.js ├── capture-two-size.js ├── capture-via-yuyv.js ├── capture.js ├── image-stream-server-native.js ├── image-stream-server.js └── yuyv-stream-server.js ├── index.js ├── readme.md ├── test.js └── v4l2camera.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/package.json -------------------------------------------------------------------------------- /src/capture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/src/capture.m -------------------------------------------------------------------------------- /src/capture_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/src/capture_module.cc -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/test/test.js -------------------------------------------------------------------------------- /v4l2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/.gitignore -------------------------------------------------------------------------------- /v4l2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/.travis.yml -------------------------------------------------------------------------------- /v4l2/LICENSE-LGPL-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/LICENSE-LGPL-3.0.txt -------------------------------------------------------------------------------- /v4l2/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/LICENSE-MIT.txt -------------------------------------------------------------------------------- /v4l2/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/binding.gyp -------------------------------------------------------------------------------- /v4l2/c-examples.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/c-examples.makefile -------------------------------------------------------------------------------- /v4l2/c-examples/capture-jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/c-examples/capture-jpeg.c -------------------------------------------------------------------------------- /v4l2/c-examples/list-controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/c-examples/list-controls.c -------------------------------------------------------------------------------- /v4l2/c-examples/list-formats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/c-examples/list-formats.c -------------------------------------------------------------------------------- /v4l2/capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/capture.c -------------------------------------------------------------------------------- /v4l2/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/capture.h -------------------------------------------------------------------------------- /v4l2/examples/capture-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/examples/capture-native.js -------------------------------------------------------------------------------- /v4l2/examples/capture-two-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/examples/capture-two-size.js -------------------------------------------------------------------------------- /v4l2/examples/capture-via-yuyv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/examples/capture-via-yuyv.js -------------------------------------------------------------------------------- /v4l2/examples/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/examples/capture.js -------------------------------------------------------------------------------- /v4l2/examples/image-stream-server-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/examples/image-stream-server-native.js -------------------------------------------------------------------------------- /v4l2/examples/image-stream-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/examples/image-stream-server.js -------------------------------------------------------------------------------- /v4l2/examples/yuyv-stream-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/examples/yuyv-stream-server.js -------------------------------------------------------------------------------- /v4l2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/index.js -------------------------------------------------------------------------------- /v4l2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/readme.md -------------------------------------------------------------------------------- /v4l2/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/test.js -------------------------------------------------------------------------------- /v4l2/v4l2camera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessel/node-audiovideo/HEAD/v4l2/v4l2camera.cc --------------------------------------------------------------------------------