node-raspicam icon indicating copy to clipboard operation
node-raspicam copied to clipboard

A Node.js-based controller module for the Raspberry Pi camera based on a command structure similar to Johnny-Five

Results 20 node-raspicam issues
Sort by recently updated
recently updated
newest added

Updating raspivid relative path for RPI Zero 2 W

I cant seem to get the the nopreview flag to work. Everything else works fine except i can't stop it from throwing a preview window for every capture. Is there...

I'd be interested in getting the video as a NodeJS Buffer stream (or any kind of callbacks). Since I want to manipulate the video taken by the camera, saving 30...

## Added segment to available options raspivid is able to record video in chunks and store them with a sequence naming, the **segment** parameter allows just that. More info https://www.raspberrypi.org/documentation/raspbian/applications/camera.md

I'm trying to get the standards code example to work. ``` var RaspiCam = require("raspicam"); var camera = new RaspiCam({ mode: 'photo', output: './img/photo.png' }); //listen for the "start" event...

Some hand would be pretty. Here is my test code based on the documentation: ``` var RaspiCam = require("raspicam"); var camera = new RaspiCam({ mode:"photo", output:"testfile" }); //to take a...

Here is my code. I've tried being specific about path to file, pausing between start/stop. Not seeing all the events get fired. It does give me the command it is...

when working with react/webpack/es6 when a file doestn' have an extension, it looks for a .js extension. ../options does not have an extension in raspicam.js so it errors out because...

Hi, I'm trying node-raspicam for record video. Apparently it's working correctly, but when I'm recording appears a lot of logs messages in console that says "raspicam::watcher::event changed". I think while...