I try to follow instruction to start a video stream. But it seems that the library I install is not available
who had a answere?
sudo aptitude install libv4l-0
John
Re: set up video stream
try apt-get update and then apt-get upgrade and finnally apt-get dist-upgrade
Re: set up video stream
That is not helping could not find any package whose name match libv41-0
etc
etc
Re: set up video stream
what are your repostitories?
Re: set up video stream
What are you trying to do with those libraries?
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Re: set up video stream
I use the standard immage of raspberry PI and I am not shure what you mean with repostitories. I do not know how I can find out what the standard repostitories are
My goal is to add vision to my robot and I need I video stream and read it into python3. The plan is :
1-With a cheap web camera that connects to USB video streaming can be done in just a few easy steps, with a Raspberry PI . The simplicity of the solution comes from the streaming technology used effectively. Everything happens over HTTP , so you can watch the Webcam on any device that surfs the web see http://www.talktech.info/2013/01/21/pie ... ng-webcam/
2-Read the frames intp Python and analyse them
It is not new and I do not understand the problem I encounter now
John
My goal is to add vision to my robot and I need I video stream and read it into python3. The plan is :
1-With a cheap web camera that connects to USB video streaming can be done in just a few easy steps, with a Raspberry PI . The simplicity of the solution comes from the streaming technology used effectively. Everything happens over HTTP , so you can watch the Webcam on any device that surfs the web see http://www.talktech.info/2013/01/21/pie ... ng-webcam/
2-Read the frames intp Python and analyse them
It is not new and I do not understand the problem I encounter now
John
Re: set up video stream
The rep is :
deb http://mirrirdirector.raspbian.org/raspbian/ wheezy main contrib non-free rpi
Thanks for yoyr attention
John
deb http://mirrirdirector.raspbian.org/raspbian/ wheezy main contrib non-free rpi
Thanks for yoyr attention
John
Re: set up video stream
make sure you use lower case 'L' for 'l'.
libv4l-0
libv4l-0
Re: set up video stream
Can anybody please update the rep position for libv41 because I cant find it at stated
http://mirrordirector.raspbian.org/raspbian/ wheezy main contrib non-free rpi
this tree does not seem to exist. I have the same videodev.h problem. Thanks
http://mirrordirector.raspbian.org/raspbian/ wheezy main contrib non-free rpi
this tree does not seem to exist. I have the same videodev.h problem. Thanks
Re: set up video stream
Here is what works to get videodev.h into raspberry pi raspbian for webcam
Posted by Piotrus
http://stackoverflow.com/questions/1569 ... videodev-h
sudo apt-get install libv4l-dev
maybe you will need also:
cd /usr/include/linux
sudo ln -s ../libv4l1-videodev.h videodev.h
run as root without sudo in commands it loads a copy of videodev.h into /usr/include/linux
Whether that then runs ok I do not know yet.
Posted by Piotrus
http://stackoverflow.com/questions/1569 ... videodev-h
sudo apt-get install libv4l-dev
maybe you will need also:
cd /usr/include/linux
sudo ln -s ../libv4l1-videodev.h videodev.h
run as root without sudo in commands it loads a copy of videodev.h into /usr/include/linux
Whether that then runs ok I do not know yet.