pi-builder
pi-builder copied to clipboard
Recipe for timelapse with Raspberry Pi camera
There are some great tutorials/code snippets for this:
https://learn.adafruit.com/raspberry-pi-wearable-time-lapse-camera/software
https://projects.raspberrypi.org/en/projects/timelapse-setup
Here's my take on it timelapse.sh. It is extremely minimalistic.
In this case it's taking advantage of RPi-WebCam to signal taking a picture.
Without RPI-WebCam it could call the raspistill
program. RPI-WebCam conveniently handles file naming, otherwise we'd have had to handle it ourselves.
Ooohhhh exciting!
On Sat, Oct 13, 2018, 12:07 PM Sebastian Silva [email protected] wrote:
Here's my take on it timelapse.sh https://github.com/publiclab/image-builder-rpi/blob/docs/builder/scripts/timelapse.sh. It is extremely minimalistic.
In this case it's taking advantage of RPi-WebCam to signal taking a picture. Without RPI-WebCam it could call the raspistill program. RPI-WebCam conveniently handles file naming, otherwise we'd have had to handle it ourselves.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/publiclab/image-builder-rpi/issues/22#issuecomment-429509149, or mute the thread https://github.com/notifications/unsubscribe-auth/AABfJ0pKVTscDN_B5il2oLS_Hz9XDqxMks5ukWbGgaJpZM4W3DXO .
Also great because it might be runnable simultaneously with rpi cam? Which otherwise would be impossible as only one program can use the cam at a time? Is this correct?
Thanks!
On Sun, Oct 14, 2018, 6:32 AM Jeffrey Warren [email protected] wrote:
Ooohhhh exciting!
On Sat, Oct 13, 2018, 12:07 PM Sebastian Silva [email protected] wrote:
Here's my take on it timelapse.sh https://github.com/publiclab/image-builder-rpi/blob/docs/builder/scripts/timelapse.sh. It is extremely minimalistic.
In this case it's taking advantage of RPi-WebCam to signal taking a picture. Without RPI-WebCam it could call the raspistill program. RPI-WebCam conveniently handles file naming, otherwise we'd have had to handle it ourselves.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/publiclab/image-builder-rpi/issues/22#issuecomment-429509149, or mute the thread https://github.com/notifications/unsubscribe-auth/AABfJ0pKVTscDN_B5il2oLS_Hz9XDqxMks5ukWbGgaJpZM4W3DXO .
Yes, correct, with this approach it can work in tandem with the RPi Webcam software.