GStreamer Good Plugins 0.10 Plugins Reference Manual | ||||
---|---|---|---|---|
Top | Description | Object Hierarchy | Properties |
GObject +----GstObject +----GstElement +----GstBaseSrc +----GstPushSrc +----GstMultiFileSrc
"caps" GstCaps* : Read / Write "index" gint : Read / Write "location" gchar* : Read / Write
Reads buffers from sequentially named files. If used together with an image decoder, one needs to use the "caps" property or a capsfilter to force to caps containing a framerate. Otherwise image decoders send EOS after the first picture.
File names are created by replacing "%d
" with the index using printf()
.
gst-launch multifilesrc location="img.%04d.png" index=0 caps="image/png,framerate=\(fraction\)12/1" ! \ pngdec ! ffmpegcolorspace ! theoraenc ! oggmux ! \ filesink location="images.ogg"