Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accessing a camera connected to Raspberry Pi #53

Open
shanepisko opened this issue Oct 23, 2013 · 5 comments
Open

Accessing a camera connected to Raspberry Pi #53

shanepisko opened this issue Oct 23, 2013 · 5 comments

Comments

@shanepisko
Copy link

How would one connect to a camera attached to the pi? would this be done via javascript codes that add webcam support to your projects? Also could the Processing.js libraries be used with coder?

@jmstriegel
Copy link
Contributor

Not out of the box, but....

Take a look at this project:
https://github.com/troyth/node-raspicam/

I think you could add that module to the package.json, then make a CameraLib project that surfaces that into a simple api that you can use to pull jpgs from in your other apps.

@shanepisko
Copy link
Author

Awesome, thanks! Ill try this out

@shanepisko
Copy link
Author

So if I install raspicam via npm I will still have to add it to package.json? How do I got about doing that? Sorry I'm very new to all of this stuff. I just received my camera module, got it hooked up and taking photos via command line. I tried installing raspicam but it did not work and said that I might have the wrong version of node.js

Any help is greatly appreciated

@macb
Copy link

macb commented Nov 13, 2013

Hi @shanepisko, any success?

@miniBloq
Copy link

miniBloq commented Aug 7, 2014

Hi!
This may help. You need to install the following (please do a backup of your SD card first):

Then:
sudo apt-get update
sudo apt-get install uv4l uv4l-raspicam
sudo apt-get install uv4l-raspicam-extras

  • To verify the driver:
    • If installed, this should show the manual:
      man uv4l
    • Check if video0 device exist:
      ls /dev
  • To avoid the (ugly) preview window follow these steps:
  • Then install https://github.com/troyth/node-raspicam/:

npm install raspicam

I don't remember if I had to do more changes.

To make a test from Coder, create a new app and add the following code at the end of Coder's NODE tab. It seems to be working just find:


var RaspiCam = require("/home/pi/node_modules/raspicam");

var camera = new RaspiCam({
mode: "video",
output: "/tmp/video.h264",
framerate: 15,
timeout: 5000 // take a 5 second video
});

camera.on("started", function( err, timestamp ){
console.log("video started at " + timestamp );
});

camera.on("read", function( err, timestamp, filename ){
console.log("video captured with filename: " + filename + " at " + timestamp );
});

camera.on("exit", function( timestamp ){
console.log("video child process has exited at " + timestamp );
});

camera.start();


Cheers!
Julián

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants