Can I get video/x-raw-rgb directly from multifilesrc? For example,
gst-launch multifilesrc location="%05d.bin" caps="video/x-raw-rgb,width=640,height=480,framerate=\(fraction\)1/1" ! videoscale ! video/x-raw-gray,width=90,height=72 ! jpegenc ! multifilesink
How can "video/x-raw-rgb" be stored in %05d.bin files ?
Actually I'm building my own plugin based on multifilesrc. It can get bitmaps from camera and i want to clip them to a video stream without bmp encoding/decoding. It can produce *.bmp files now.
Thank you