I'm trying to input an array of JPG or PNG to stdin of gstreamer.
I studied there are fdsrc
element in gstreamer to input data from file descriptor.
I think I can dump mp4 file using fdsrc with this following code.
gst-launch-1.0 -e -v fdsrc fd=0 ! autovideosink
But, I want to input an array of JPG or PNG that is exported from my own application.
How can I do that with fdsrc?