• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D19-Apr-2019505 2218

Makefile.inH A D03-May-202238.6 KiB1,1271,030

READMEH A D19-Apr-2019443 2414

gstaudioparse.cH A D19-Apr-201911.4 KiB375280

gstaudioparse.hH A D19-Apr-20191.7 KiB5526

gstvideoparse.cH A D19-Apr-201912.9 KiB422323

gstvideoparse.hH A D19-Apr-20191.7 KiB5626

meson.buildH A D19-Apr-2019409 1614

plugin.cH A D19-Apr-2019617 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