

- #LIGHT WEIGHT PYTHON FOR MAC MOVIE#
- #LIGHT WEIGHT PYTHON FOR MAC INSTALL#
- #LIGHT WEIGHT PYTHON FOR MAC FREE#
My Remote Security Camera Setup using grive

Readme.txtĭownload tar file containing all the files here. See below for details of my remote 3000 km away camera setup that has to use grive.ĭownload setup instructions here. The Robin Cam setup does not currently use the grive option since it can connect to my home network via wifi.
#LIGHT WEIGHT PYTHON FOR MAC INSTALL#
The tar file includes a compiled version of grive plus a setup script to install required libraries to save everyone the effort of compiling the grive code for the RPI. The YouTube video comments Includes instructions for downloading readme.txt and tar files, Also see links below. Here is a link to my latest Robin Cam video using motion detection with grive sync to my google drive capability. Picamera feature has additional capability like lowLight setting for night time. You will have to transfer any previous pimotion.py settings to the new pimotion.py. Read the Readme.txt for detailed instructions # some time to measure the scene and determine appropriate valuesĬamera.shutter_speed = camera.exposure_speedĬamera.capture('/home/pi/rpi-cam2/testimage.jpg') # Give the camera's auto-exposure and auto-white-balance algorithms ssh or open a terminal on the raspberry pi with a rpi camera module installed and working Fixed bug that crashes pimotion if numsequence is set to False caused by displaying initial settings informationīrief install instructions.
#LIGHT WEIGHT PYTHON FOR MAC MOVIE#
Added makemovie.py to create a movie from contents of google_drive folder. picamera option uses camera settings to make Daylight photo more consistent Low light photos but don't use during bright light conditions or photos will be washed out Added picamera option to take low light photos during specified hours. Added option to use picamera to take large photo instead of shelling out to raspian to run raspistill Note grive_setup.sh has been replaced by setup.sh Changed setup.sh so it installs python-imaging, python-picamera and mencoder dependencies and librariesīy default. I have also included a pi-motion-lite for those who want a minimal picamera library python motion detection script for projects.ġ Version 2.0 of pimotion.py is now on github. This is written using the picamera python library.

I have released a new version called pi-timolo (pi, timelapse, motion, lowlight) on my github repo per forum post below. SaveImage(saveWidth, saveHeight, diskSpaceToReserve) If time.time() - lastCapture > forceCaptureTime: # Just check green channel as it's the highest quality channel Subprocess.call("raspistill -w 1296 -h 972 -t 0 -e jpg -q 15 -o %s" % filename, shell=True) ImageData.write(subprocess.check_output(command, shell=True))ĭef saveImage(width, height, diskSpaceToReserve):įilename = "capture-%04d%02d%02d-%02d%02d%02d.jpg" % (time.year, time.month, time.day, time.hour, time.minute, cond) # Capture a small test image (for motion detection)Ĭommand = "raspistill -w %s -h %s -t 0 -e bmp -o -" % (100, 75)
#LIGHT WEIGHT PYTHON FOR MAC FREE#
# ForceCapture (whether to force an image to be captured every forceCaptureTime seconds)įorceCaptureTime = 60 * 60 # Once an hourĭiskSpaceToReserve = 40 * 1024 * 1024 # Keep 40 mb free on disk # Sensitivity (how many changed pixels before capturing an image) # Threshold (how much a pixel has to change by to be marked as "changed")
