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
Asked
Active
Viewed 1.4k times
15

batuman
- 7,066
- 26
- 107
- 229
-
8I changed to libv4l-dev. It is 4l(four and alphabet l) not 41 (fourty one). – batuman May 01 '14 at 08:43
2 Answers
8
The library is libv4l-dev
. You can install using the command
sudo apt-get install libv4l-dev

Anand
- 693
- 1
- 8
- 26
-
1I'm going to pretend that this didn't just help me and that I can in fact see properly – PotatoSoop May 28 '23 at 14:22