I have been in the process of setting up a puppy cam so that my wife and I can monitor our new puppy while at work. I have used my raspberry pi (model B) with a WiFi usb adapter (http://www.amazon.com/gp/product/B003MT ... UTF8&psc=1) and the raspberry pi camera module with the latest version of Raspbian. I followed the tutorial here: http://www.slickstreamer.info/2013/06/u ... le-to.html to set everything up so that it sends a stream to my ustream.tv channel. I keep running into an issue when trying to use crontab to schedule raspivid to come on at 0715 and to stop at 1700. I have put the code that Marcus wrote in a shell script that looks just like this:
Code: Select all
raspivid -t 9999999 -vf -hf -w 960 -h 540 -fps 25 -b 500000 -o - | ffmpeg -i - -vcodec copy -an -metadata title="Puppy Cam" -f flv Ustream RMTP Here/Key is hereCode: Select all
15 7 * * 1-5 sudo /home/pi/startvid.sh
00 17 * * 1-5 sudo killall raspivid- Tyler