Hello, I am trying to use FFmpeg to save an Analog Video stream to a file on Linux. My video device is a V4L2 device and I have tried a couple different commands:
$ ffmpeg -f v4l2 -list_formats all -i /dev/video1 # Look at device information $ ffmpeg -f v4l2 -framerate 25 -video_size 640x480 -i /dev/video0 output.mkv # save the video I get the following output with both commands [video4linux2,v4l2 @ 0xcbbd4f0] Not a video capture device. /dev/video1: No such device I see here (https://github.com/FFmpeg/FFmpeg/blob/master/libavdevice/v4l2.c#L172) that v4l2 devices need to support V4L2_CAP_VIDEO_CAPTURE to open. My device does not support V4L2_CAP_VIDEO_CAPTURE but it does support V4L2_CAP_VIDEO_CAPTURE_MPLANE. Does FFmpeg have support for V4L2_CAP_VIDEO_CAPTURE_MPLANE? ~ Andrew _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
