MultiFileSink

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 Dröge?

multifilesink

Multifilesink is an element that is designed to write individual buffers to sequentially named files. Unlike most other elements, multifilesink is meant to be most useful in scripts and gst-launch command lines.

Examples

Create 100 files (00000 to 00099) containing the raw video frames generated by videotestsrc:

gst-launch videotestsrc num-buffers=100 ! \
  video/x-raw-yuv,format=\(I420\),width=320,height=240 ! \
  multifilesink

Dump a video to a series of PNG files:

gst-launch uridecodebin uri=file:///path/to/some/file ! \
  ffmpegcolorspace ! videoscale !
  pngenc snapshot=false ! multifilesink location=output-%05d.png

See Also

MultiFileSrc