• Home
Name Date Size #Lines LOC

..--

Makefile.amD12-May-2024505 2218

Makefile.inD12-May-202438.6 KiB1,1271,030

READMED12-May-2024443 2414

gstaudioparse.cD12-May-202411.4 KiB375280

gstaudioparse.hD12-May-20241.7 KiB5526

gstvideoparse.cD12-May-202412.9 KiB422323

gstvideoparse.hD12-May-20241.7 KiB5626

meson.buildD12-May-2024409 1614

plugin.cD12-May-2024617 2721

README

1
2videoparse
3==========
4
5The videoparse element is used to parse a file containing raw image
6data.
7
8
9Creating example data
10=====================
11
12gst-launch-1.0 videotestsrc num_buffers=300 ! \
13  video/x-raw,format=\(string\)I420,width=320,height=240 ! \
14  filesink location=raw
15
16
17Reading example data
18====================
19
20gst-launch-1.0 filesrc location=raw ! \
21  videoparse format=I420 width=320 height=240 framerate=30/1 ! \
22  xvimagesink
23
24