
Faster Video Streaming on Raspberry Media Server with MJPG STREAMER
MJPG Streamer is a simple and straight forward video streamer, but it is faster than most streamers, so this may be ideal for your remote control projects in which real-time video feed is crucial for navigation and orientation purposes. Installing MPJG Streamer on Raspberry Pi On Raspbian (wheezy), here is…

Python, CGI and lighttpd
Here is step-by-step instruction on how to configure your web server for python CGI web application: 1. sudo lighty-enable-mod cgi 2. sudo nano /etc/lighttpd/conf-enabled/10-cgi.conf # /usr/share/doc/lighttpd/cgi.txt server.modules += ( “mod_cgi” ) $HTTP[“url”] =~ “^/cgi-bin/” { cgi.assign = ( “.py” => “/usr/python” ) } ## Warning this represents a…