gstreamer/gst/rawparse
2019-05-13 17:00:00 -04:00
..
gstaudioparse.c docs: Port all docstring to gtk-doc markdown 2017-04-12 12:57:57 -03:00
gstaudioparse.h rawparse: Whitespace cleanup 2016-11-28 14:26:17 +02:00
gstvideoparse.c videoparse: Fix property handling 2017-06-06 15:22:20 -04:00
gstvideoparse.h rawparse: Whitespace cleanup 2016-11-28 14:26:17 +02:00
Makefile.am Remove plugin specific static build option 2017-05-16 14:05:52 -04:00
meson.build docs: Build documentation with hotdoc 2019-05-13 17:00:00 -04:00
plugin.c rawparse: Move to gst-plugins-base and keep legacy audioparse/videoparse here 2017-02-25 14:52:38 +02: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