initial commit

This commit is contained in:
Donald Burr 2015-02-14 21:21:40 -08:00
commit c3b94b7106
91 changed files with 56958 additions and 0 deletions

21
NOTES/CAMERA-CMDS Normal file
View file

@ -0,0 +1,21 @@
# setup: http://www.raspberrypi.org/help/camera-module-setup/
sudo apt-get install python-picamera
vcgencmd version
vcgencmd get_camera
# camera commands:
# http://www.raspberrypi.org/documentation/usage/camera/raspicam/README.md
# raspistill:
# http://www.raspberrypi.org/documentation/usage/camera/raspicam/raspistill.md
raspistill -o click.jpg
# raspivid:
# http://www.raspberrypi.org/documentation/usage/camera/raspicam/raspivid.md
# default 5 seconds, use -t <msecs> to customize
raspivid -o vid.h264
# picamera docs:
http://www.raspberrypi.org/documentation/usage/camera/python/README.md
http://picamera.readthedocs.org/en/latest/api.html

6
NOTES/CameraLinks Normal file
View file

@ -0,0 +1,6 @@
http://www.raspberrypi.org/forums/viewtopic.php?f=43&t=62364&p=463001
http://www.raspberrypi.org/forums/viewtopic.php?t=62945&p=466490
http://www.instructables.com/id/Raspberry-Pi-as-low-cost-HD-surveillance-camera/?ALLSTEPS
https://rbnrpi.wordpress.com/project-list/setting-up-wireless-motion-detect-cam/
http://www.raspberrypi.org/learning/parent-detector/
http://www.raspberrypi.org/turn-your-pi-into-a-low-cost-hd-surveillance-cam/

16
NOTES/FILE_LIST Normal file
View file

@ -0,0 +1,16 @@
.ssh/authorized_keys
.bashrc
.profile
.vimrc
configs
drivers
make_tar
network_info
NOTES
scripts
setup_pi
setup_smb
setup_wifi
sync_osss_files
TODO
video.log

11
NOTES/NODE Normal file
View file

@ -0,0 +1,11 @@
download from source:
http://nodejs.org/dist/v0.10.34/node-v0.10.34.tar.gz
precompiled binary:
docs: https://gist.github.com/adammw/3245130
DOWNLOAD THIS: https://gist.github.com/raw/3245130/v0.10.24/node-v0.10.24-linux-arm-armv6j-vfp-hard.tar.gz
cd /usr/local
tar xzvf /path/to/binary.tar.gz --strip=1
fix the path:
echo 'export NODE_PATH="'$(npm root -g)'"' >> ~/.bash_profile && . ~/.bash_profile

3
NOTES/TRY_THIS Normal file
View file

@ -0,0 +1,3 @@
The command:
vlc http://doorcam/img/video.asf --sout '#transcode{vcodec=MJPG,venc=ffmpeg{strict=1}}:standard{access=http{mime=image/jpeg},mux=mpjpeg,dst=:8080/doorcam.mjpg}'