[19:06] <tp43_> The docs are very cryptic, anyone mind teaching? I am trying to use grabber to save, but it saves as ppm and I can't open it in anything except xli.
[19:35] <ndufresne> tp43_, define grabber ?
[19:35] <tp43_> ndufresne, in the docs, there is a couple sample programs, one for video and one for taking pictures, pictures one is called grabber.c
[19:38] <tp43_> ndufresne, https://linuxtv.org/downloads/v4l-dvb-apis-new/uapi/v4l/v4l2grab-example.html
[19:46] <ndufresne> it's quite minimal indeed
[19:46] <ndufresne> but you know there is other userspace you can use to get that working ?
[19:53] <ndufresne> tp43_, e.g. you should use ffmpeg, you can do that programmatically of course, but to test, ffmpeg -f v4l2 -i /dev/video1 -vframes 1 output.jpg
[19:54] <ndufresne> or gstreamer, gst-launch-1.0 v4l2src device=/dev/video1 num-buffers=1 ! jpegenc ! filesink location=output.jpg
[19:54] <tp43_> ndufresne, yeah I heard of em, but I wanna make programs
[19:56] <ndufresne> well, these are command line tests, both ffmpeg and gstreamer are programming libraries
[19:57] <tp43_> ndufresne, I just want taking picture functionality
[19:57] <ndufresne> so what ?
[19:57] <tp43_> so grabber is just that
[19:58] <ndufresne> but then you need to learn about color formats conversion, encoders libraries, etc.
[19:58] <tp43_> ndufresne, yeah so what ?
[19:58] <tp43_> ndufresne, can you help with that?
[19:58] <tp43_> obviously not, thanks anyways man
[19:58] <ndufresne> well, then start learning, the grabber is just the v4l2 capture part, nothing cryptic in there
[19:59] <tp43_> ndufresne, so you do know whats up?
[19:59] <ndufresne> Note, this is bad assumption, and bad attitude -> "tp43_> obviously not, thanks anyways man"
[19:59] <tp43_> so I can query many camera and see what options are available with respect to image formats, or see if only the one is available?
[20:00] <tp43_> ndufresne, I will opologize for it, if in fact you dispense some knowledge
[20:00] <ndufresne> I've helped hundreds of people IRC and mailing list, so ...
[20:01] <ndufresne> yes, V4L2 kernel API allow you to enumerate the formats, frame size and frame interval of connected cameras
[20:01] <tp43_> ndufresne, lets try vl4-ctrl and query formats my webcam can do or if it can do just the one
[20:02] <ndufresne> to get them all in one cmdl, v4l2-ctl -d /dev/video0 --list-formats-ext
[20:02] <tp43_> ndufresne, nice, I opologize for my bad attitude earlier
[20:03] <tp43_> so this cam of mine, only Motion JPEG or YUYV
[20:03] <ndufresne> no worries, I'm telling you for you to learn, we don't hang here to laugh at people ignorance, specially that we are all ignorant in certain areas
[20:04] <tp43_> Cause I heard some camera have their own built in encoders, looks like mine does not, except for video. Seems like if it can make mjpeg, should be able to make jpeg too.
[20:04] <tp43_> I've been sitting here on my computer and irc asking questions for 20years man, I am old man, and still stuck.
[20:05] <tp43_> But much better than in the beginning
[20:05] <ndufresne> true, notably the C920/30 from Logitech have an H264 encoder, they pretty much all have a jpeg encoder
[20:06] <ndufresne> note, v4l2 kernel interface show you the video aspect only, most camera have a mic too, which is exposed through alsa
[20:07] <tp43_> How do I see if I have h264?
[20:07] <tp43_> it would have shown when I entered --list-formats-ext?
[20:08] <ndufresne> yes, it would have shows as Pixel Format: 'H264'
[20:08] <ndufresne> * shown
[20:13] <tp43_> whats difference between v4l and uvc. uvc is just a subset for some webcams that offer other controls?
[20:22] <ndufresne> UVC is a USB protocol implemented by a lot of webcams
[20:23] <ndufresne> v4l2 is the linux kernel ioctl based API used to interact with streaming HW, not only webcams
[20:25] <tp43_> I just looked up camoid, that project went ahead pretty far
[20:29] <tp43_> I thought v4l is the the driver you need for webcam, how could libavkys7 work without v4l?
[20:35] <ndufresne> well, v4l2 is the kernel interface that drivers implements
[20:36] <tp43_> I think webcamoid is using ffmpeg and gstreamer which each in turn use v4l for the webcam I guess
[20:36] <tp43_> oh wait no, I see v4l is there too
[20:37] <tp43_> yes so I am thinking correct, v4l is as low as you can go before you are writing device drivers.
[20:56] <ndufresne> tp43_, yes, well, for USB camera, there is always the libusb option, writing a userspace UVC driver should be possible (that would fall a bit outside of my confort zone though)