Code: Select all
netcam_url http://127.0.0.1/cgi-bin/raspicam
Code: Select all
raspistill -o -
mikerr, can you explain in more details how to do that? When I run raspistill it sends garbage on the screenmikerr wrote:
- get the Raspi camera to dump jpegs into a local webserver running on the pi:
/home/www/cgi-bin/raspicamCode: Select all
raspistill -o -
Code: Select all
#!/bin/bash
raspistill -o
Code: Select all
#!/bin/bash
echo "Content-type: image/jpeg"
echo
raspistill -t 0 -w 1024 -h 768 -o -
Code: Select all
sudo chmod 777 /dev/vchiq
If you are up for recompiling, there is a fix for the preview issue in the thread about it.SN wrote:a simple solution to the flickering on the screen (because -nopreview is broken) is to make the preview size very small and place it to the left and above the screen so only ONE pixel is updated on the console like so
/opt/vc/bin/raspistill -t 0 -w 1024 -h 768 -p -31,-23,32,24 -o -
I know, but sadly I'm not 'up for it'jamesh wrote:If you are up for recompiling, there is a fix for the preview issue in the thread about it.SN wrote:a simple solution to the flickering on the screen (because -nopreview is broken) is to make the preview size very small and place it to the left and above the screen so only ONE pixel is updated on the console like so
/opt/vc/bin/raspistill -t 0 -w 1024 -h 768 -p -31,-23,32,24 -o -
Code: Select all
chmod 777 /dev/vchid
Code: Select all
sudo usermod -a -G video www-data
sudo shutdown -r now
Code: Select all
sudo chmod 777 /dev/vchiq