gstreamer/gst/rawparse
2021-04-11 16:16:55 +00:00
..
gstaudioparse.c gst-plugins: allow per feature registration 2021-04-11 16:16:55 +00:00
gstaudioparse.h gst-plugins: allow per feature registration 2021-04-11 16:16:55 +00:00
gstvideoparse.c gst-plugins: allow per feature registration 2021-04-11 16:16:55 +00:00
gstvideoparse.h gst-plugins: allow per feature registration 2021-04-11 16:16:55 +00:00
meson.build docs: Build documentation with hotdoc 2019-05-13 17:00:00 -04:00
plugin.c gst-plugins: allow per feature registration 2021-04-11 16:16:55 +00:00
README plugins-bad: Fix example pipelines 2015-12-15 10:30:49 +00:00

videoparse
==========

The videoparse element is used to parse a file containing raw image
data.


Creating example data
=====================

gst-launch-1.0 videotestsrc num_buffers=300 ! \
  video/x-raw,format=\(string\)I420,width=320,height=240 ! \
  filesink location=raw


Reading example data
====================

gst-launch-1.0 filesrc location=raw ! \
  videoparse format=I420 width=320 height=240 framerate=30/1 ! \
  xvimagesink