BeagleBone as video server with mjpg-streamer under ubuntu 1210
After installing PyBBIO correctly on beaglebone A6A, I came back for adding video service on beaglebone. I have tried "Motion" before, it was working on beagleboard xM with pretty good frame per second. But when I tried motion on beaglebone, the program looks running,no error message, but the video was never shown on the client side. After googling, it seems mjpg-streamer is a good solution wildly applied on beaglebone. Here is a good web page detailing the steps. http://shrkey.com/installing-mjpg-streamer-on-beaglebone-black/ Above example use beaglebone black and 1310, I tried on beaglebone white with ubuntu 1210 1st step is to install libraries: sudo apt-get install g++ curl pkg-config libv4l-dev libjpeg-dev build-essential libssl-dev vim cmake sudo apt-get install imagemagick 2nd step: down load mjpg-streamer wget https://github.com/shrkey/mjpg-streamer/raw/master/mjpg-streamer.tar.gz 3rd step: untar it into it's floder: tar -xvf ./mjpg-streamer.ta...