1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//list of pipelines that show the capabilities of the gst-plugins-gl
gst-launch-0.10 videotestsrc ! glimagesink
gst-launch-0.10 videotestsrc num_buffers = 200 ! glimagesink
gst-launch-0.10 videotestsrc ! "video/x-raw-yuv, format=(fourcc)I420, width=201, height=103" ! glimagesink
gst-launch-0.10 gltestsrc ! glimagesink
gst-launch-0.10 gltestsrc ! "video/x-raw-gl, width=720, height=576" ! glimagesink
gst-launch-0.10 videotestsrc ! glupload ! glimagesink
gst-launch-0.10 videotestsrc ! glupload ! "video/x-raw-gl, width=720, height=576" ! glimagesink
gst-launch-0.10 videotestsrc ! "video/x-raw-yuv, format=(fourcc)AYUV, width=380, height=288" ! glupload ! "video/x-raw-gl, width=720, height=576" ! glimagesink
gst-launch-0.10 videotestsrc ! glupload ! glfiltercube ! glimagesink
gst-launch-0.10 videotestsrc ! glupload ! glfiltercube ! glfiltercube ! glimagesink
gst-launch-0.10 videotestsrc ! "video/x-raw-yuv, format=(fourcc)AYUV, width=320, height=240" ! glupload ! "video/x-raw-gl, width=720, height=576" ! glfiltercube ! "video/x-raw-gl, width=320, height=240" ! glimagesink
gst-launch-0.10 gltestsrc ! glfiltercube ! glimagesink
gst-launch-0.10 videotestsrc ! glupload ! glfilterapp ! glimagesink
gst-launch-0.10 gltestsrc ! glfilterapp ! glimagesink
gst-launch-0.10 videotestsrc ! glcolorscale ! ximagesink
gst-launch-0.10 videotestsrc ! glcolorscale ! glimagesink
gst-launch-0.10 videotestsrc ! "video/x-raw-yuv, format=(fourcc)YV12, width=640, height=480" ! glcolorscale ! "video/x-raw-rgb, width=320, height=240" ! ximagesink
gst-launch-0.10 gltestsrc ! gldownload ! glcolorscale ! glimagesink
gst-launch-0.10 videotestsrc ! glupload ! gldownload ! ximagesink
gst-launch-0.10 videotestsrc ! glupload ! gldownload ! glimagesink
gst-launch-0.10 videotestsrc num_buffers=200 ! glupload ! gldownload ! ffenc_mpeg4 ! avimux ! filesink location="record.avi"
gst-launch-0.10 videotestsrc num_buffers=200 ! glupload ! video/x-raw-gl, width=720, height=576 ! glfiltercube ! video/x-raw-gl, width=320, height=240 ! gldownload ! ffenc_mpeg4 ! avimux ! filesink location="record.avi"
gst-launch-0.10 videotestsrc ! tee name=t t. ! queue ! glimagesink t. ! queue ! glimagesink t. ! queue ! glimagesink
gst-launch-0.10 videotestsrc ! tee name=t t. ! queue ! glimagesink t. ! queue ! glupload ! glfiltercube ! glimagesink
gst-launch-0.10 videotestsrc ! tee name=t t. ! queue ! glimagesink t. ! queue ! glupload ! glfiltercube ! glimagesink t. ! queue ! glcolorscale ! glimagesink
|