A Better Raspberry Pi Streaming Solution
In the June 2016 issue, I described my Raspberry Pi outdoor camera build. Since then, however, I've discovered a different way to stream video from it. Although capturing images with "raspistill" and serving them out via Web server is perfectly fine, I'd prefer to have an actual video stream coming from the little RPi. Thankfully, there's UV4L.
I had to add a line to my sources.list file in order to download the software, but it was well worth it. Add this to your /etc/sources.list file:
deb http://www.linux-projects.org/listing/uv4l_repo/raspbian/
↪wheezy main
And then you'll need to add the key:
curl http://www.linux-projects.org/listing/uv4l_repo/lrkey.asc
↪| sudo apt-key add -
Once that is done, simply install the program:
sudo apt-get update && sudo apt-get install uv4l uv4l-raspicam \
uv4l-raspicam-extras uv4l-server uv4l-uvc uv4l-xscreen \
uv4l-mjpegstream uv4l-dummy
And finally, you can add a line like this to your crontab that will turn your RPi into a streaming IP camera! These are just the settings I use; check out the man pages for your options:
@reboot /usr/bin/uv4l -nopreview --auto-video_nr --driver
↪raspicam --encoding jpeg --quality 90 --metering matrix
↪--drc low --width 1280 --height 720 --framerate 10
↪--server-option '--port=9090' --server-option
↪'--max-queued-connections=10' --server-option
↪'--max-streams=5' --server-option '--max-threads=15'
Go to this site to see the various things UV4L provides.
Shawn Powers is a Linux Journal Associate Editor. You might find him on IRC, Twitter, or training IT pros at CBT Nuggets.
Trending Topics
| December 2016 Video Preview | Dec 01, 2016 |
| Stepping into Science | Nov 30, 2016 |
| A Better Raspberry Pi Streaming Solution | Nov 29, 2016 |
| FutureVault Inc.'s FutureVault | Nov 28, 2016 |
| Message for You, Sir! | Nov 25, 2016 |
| Non-Linux FOSS: Scripts in Your Menu Bar! | Nov 23, 2016 |
- Tech Tip: Really Simple HTTP Server with Python
- Stepping into Science
- A Better Raspberry Pi Streaming Solution
- Qu’est-ce qu’on a fait au Bon Dieu ? Télécharger Le Film Complet Gratuit
- Tyson Foods Honored as SUSE Customer of the Year
- Radio Free Linux
- FutureVault Inc.'s FutureVault
- Message for You, Sir!
- The Tiny Internet Project, Part II
- Security Exercises




