Wireless camera system on a budget

Michael Pope (@map7)

MLUG Feb, 2014

Disclaimer

Re-use

Hardware used

Phone mount

$7 from ebay

Bracket

$2.30 from ebay

Android phone server

Android phone viewing

Recording software 'Motion'

Recording setup

Enable on boot

/etc/default/motion
start_motion_daemon=yes

Example motion.conf

# ffv1 codec works best
ffmpeg_video_codec ffv1

netcam_url http://10.0.0.100:8080/videofeed

target_dir /media/data/recordings

width 640
height 480
framerate 15

# View video feed from any computer
control_localhost off

Remove old recordings

# Remove over 60 days, put into /etc/crontab
/usr/bin/find /recordings -mtime +60 -exec rm {} \;

Multi-camera setup

Multi-camera example

netcam_url http://10.0.0.101:8080/videofeed
target_dir /media/data/recordings/kitchen
webcam_port 8081

Recording requirements

Questions