gstreamer/subprojects/gst-plugins-bad/gst/rawparse
2022-09-01 21:17:35 +00:00
..
gstaudioparse.c Move files from gst-plugins-bad into the "subprojects/gst-plugins-bad/" subdir 2021-09-24 16:14:36 -03:00
gstaudioparse.h Move files from gst-plugins-bad into the "subprojects/gst-plugins-bad/" subdir 2021-09-24 16:14:36 -03:00
gstvideoparse.c Move files from gst-plugins-bad into the "subprojects/gst-plugins-bad/" subdir 2021-09-24 16:14:36 -03:00
gstvideoparse.h Move files from gst-plugins-bad into the "subprojects/gst-plugins-bad/" subdir 2021-09-24 16:14:36 -03:00
meson.build meson: Call pkgconfig.generate in the loop where we declare plugins dependencies 2022-09-01 21:17:35 +00:00
plugin.c Move files from gst-plugins-bad into the "subprojects/gst-plugins-bad/" subdir 2021-09-24 16:14:36 -03:00
README Move files from gst-plugins-bad into the "subprojects/gst-plugins-bad/" subdir 2021-09-24 16:14:36 -03: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