Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

libv41-dev package can't be located for installation

I am trying to stream jpgs using Motion JPEG streamer. I need to install package libv41-dev as a required library and when I install sudo apt-get install libv41-dev, I get Unable to locate package libv41-dev error. Why can't locate that package? I searched in google for that libv41-dev, not much information has come out. That library is required for linux/videodev.h file. Thanks

like image 616
batuman Avatar asked May 01 '14 08:05

batuman


2 Answers

Make sure it’s not libv41 it’s libv4l ( letter l )

like image 121
Neetu Avatar answered Oct 01 '22 14:10

Neetu


The library is libv4l-dev. You can install using the command

sudo apt-get install libv4l-dev
like image 31
Anand Avatar answered Oct 01 '22 14:10

Anand