MultiFileSrc

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
What is the first name of GStreamer hacker Nauwelaerts?

multifilesrc

The multifilesrc element is used to read a collection of sequentially named files, e.g., 00001.jpg, 00002.jpg, 00003.jpg, etc., into a GStreamer pipeline.

Example Pipeline

This pipeline reads the files 00001.png, 00002.png, etc., decodes them, and then reencodes the video into Ogg/Theora.

gst-launch multifilesrc location=%05d.png \
  caps="image/png,framerate=30/1,pixel-aspect-ratio=1/1" ! \
  pngdec ! ffmpegcolorspace ! video/x-raw-yuv,format=\(fourcc\)I420 ! \
  theoraenc ! oggmux ! filesink location=output.ogg

See Also

MultiFileSink VideoParse