Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Makefile.am | D | 12-May-2024 | 505 | 22 | 18 | |
Makefile.in | D | 12-May-2024 | 38.6 KiB | 1,127 | 1,030 | |
README | D | 12-May-2024 | 443 | 24 | 14 | |
gstaudioparse.c | D | 12-May-2024 | 11.4 KiB | 375 | 280 | |
gstaudioparse.h | D | 12-May-2024 | 1.7 KiB | 55 | 26 | |
gstvideoparse.c | D | 12-May-2024 | 12.9 KiB | 422 | 323 | |
gstvideoparse.h | D | 12-May-2024 | 1.7 KiB | 56 | 26 | |
meson.build | D | 12-May-2024 | 409 | 16 | 14 | |
plugin.c | D | 12-May-2024 | 617 | 27 | 21 |
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