rename some caps and elements in examples

This commit is contained in:
Wim Taymans 2012-09-14 16:29:23 +02:00
parent 744bd3d3f2
commit 0d8f8a5134
8 changed files with 16 additions and 16 deletions

View file

@ -56,10 +56,10 @@
* <refsect2> * <refsect2>
* <title>Example launch line</title> * <title>Example launch line</title>
* |[ * |[
* gst-launch-0.10 autovideosrc ! decodebin2 ! colorspace ! facedetect ! colorspace ! xvimagesink * gst-launch-0.10 autovideosrc ! decodebin2 ! colorspace ! facedetect ! videoconvert ! xvimagesink
* ]| Detect and show faces * ]| Detect and show faces
* |[ * |[
* gst-launch-0.10 autovideosrc ! video/x-raw-yuv,width=320,height=240 ! colorspace ! facedetect min-size-width=60 min-size-height=60 ! colorspace ! xvimagesink * gst-launch-0.10 autovideosrc ! video/x-raw,width=320,height=240 ! videoconvert ! facedetect min-size-width=60 min-size-height=60 ! colorspace ! xvimagesink
* ]| Detect large faces on a smaller image * ]| Detect large faces on a smaller image
* *
* </refsect2> * </refsect2>

View file

@ -50,7 +50,7 @@
* <refsect2> * <refsect2>
* <title>Example launch line</title> * <title>Example launch line</title>
* |[ * |[
* gst-launch-0.10 videotestsrc pattern=18 ! videorate ! videoscale ! video/x-raw-yuv,width=320,height=240,framerate=5/1 ! ffmpegcolorspace ! motioncells ! ffmpegcolorspace ! xvimagesink * gst-launch-0.10 videotestsrc pattern=18 ! videorate ! videoscale ! video/x-raw,width=320,height=240,framerate=5/1 ! videoconvert ! motioncells ! videoconvert ! xvimagesink
* ]| * ]|
* </refsect2> * </refsect2>
*/ */

View file

@ -36,10 +36,10 @@
* <para>(write everything in one line, without the backslash characters)</para> * <para>(write everything in one line, without the backslash characters)</para>
* |[ * |[
* gst-launch videotestsrc num-buffers=250 \ * gst-launch videotestsrc num-buffers=250 \
* ! "video/x-raw-yuv,format=(fourcc)I420,framerate=(fraction)25/1" ! ffenc_wmv2 \ * ! "video/x-raw,format=(string)I420,framerate=(fraction)25/1" ! ffenc_wmv2 \
* ! asfmux name=mux ! filesink location=test.asf \ * ! asfmux name=mux ! filesink location=test.asf \
* audiotestsrc num-buffers=440 ! audioconvert \ * audiotestsrc num-buffers=440 ! audioconvert \
* ! "audio/x-raw-int,rate=44100" ! ffenc_wmav2 ! mux. * ! "audio/x-raw,rate=44100" ! ffenc_wmav2 ! mux.
* ]| This creates an ASF file containing an WMV video stream * ]| This creates an ASF file containing an WMV video stream
* with a test picture and WMA audio stream of a test sound. * with a test picture and WMA audio stream of a test sound.
* *

View file

@ -20,11 +20,11 @@
/* /*
* test autovideoconvert: * test autovideoconvert:
* if rgb2bayer is present * if rgb2bayer is present
* gst-launch videotestsrc num-buffers=2 ! "video/x-raw-rgb,width=100,height=100,framerate=10/1" ! autovideoconvert ! "video/x-raw-bayer,width=100,height=100,format=bggr,framerate=10/1" ! fakesink -v * gst-launch videotestsrc num-buffers=2 ! "video/x-raw,width=100,height=100,framerate=10/1" ! autovideoconvert ! "video/x-raw-bayer,width=100,height=100,format=bggr,framerate=10/1" ! fakesink -v
* if bayer2rgb is present * if bayer2rgb is present
* gst-launch videotestsrc num-buffers=2 ! "video/x-raw-bayer,width=100,height=100,format=bggr,framerate=10/1" ! autovideoconvert ! "video/x-raw-rgb,width=100,height=100,framerate=10/1" ! fakesink -v * gst-launch videotestsrc num-buffers=2 ! "video/x-raw-bayer,width=100,height=100,format=bggr,framerate=10/1" ! autovideoconvert ! "video/x-raw,width=100,height=100,framerate=10/1" ! fakesink -v
* test with ffmpegvideoconvert * test with videoconvert
* gst-launch videotestsrc num-buffers=2 ! "video/x-raw-rgb,bpp=32,width=100,height=100,framerate=10/1" ! autovideoconvert ! "video/x-raw-rgb,bpp=16,width=100,height=100,framerate=10/1" ! fakesink -v * gst-launch videotestsrc num-buffers=2 ! "video/x-raw,format=RGBx,width=100,height=100,framerate=10/1" ! autovideoconvert ! "video/x-raw,format=RGB16,width=100,height=100,framerate=10/1" ! fakesink -v
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config.h"

View file

@ -34,15 +34,15 @@
* two interlaced fields as one progressive frame. * two interlaced fields as one progressive frame.
* |[ * |[
* gst-launch -v filesrc location=/path/to/file ! decodebin ! videorate ! * gst-launch -v filesrc location=/path/to/file ! decodebin ! videorate !
* videoscale ! video/x-raw-yuv,format=\(fourcc\)I420,width=720,height=480, * videoscale ! video/x-raw,format=\(string\)I420,width=720,height=480,
* framerate=60000/1001,pixel-aspect-ratio=11/10 ! * framerate=60000/1001,pixel-aspect-ratio=11/10 !
* interlace top-field-first=false ! ... * interlace top-field-first=false ! ...
* ]| * ]|
* This pipeline converts a progressive video stream into an interlaced * This pipeline converts a progressive video stream into an interlaced
* stream suitable for standard definition NTSC. * stream suitable for standard definition NTSC.
* |[ * |[
* gst-launch -v videotestsrc pattern=ball ! video/x-raw-yuv, * gst-launch -v videotestsrc pattern=ball ! video/x-raw,
* format=\(fourcc\)I420,width=720,height=480,framerate=24000/1001, * format=\(string\)I420,width=720,height=480,framerate=24000/1001,
* pixel-aspect-ratio=11/10 ! interlace pattern=2:3 ! * pixel-aspect-ratio=11/10 ! interlace pattern=2:3 !
* ... * ...
* ]| * ]|

View file

@ -27,7 +27,7 @@
* <refsect> * <refsect>
* <title>Example launch line</title> * <title>Example launch line</title>
* |[ * |[
* gst-launch videotestsrc num_buffers=1 ! ffmpegcolorspace ! "video/x-raw-gray" ! pnmenc ascii=true ! filesink location=test.pnm * gst-launch videotestsrc num_buffers=1 ! ffmpegcolorspace ! "video/x-raw,format=GRAY8" ! pnmenc ascii=true ! filesink location=test.pnm
* ]| The above pipeline writes a test pnm file (ASCII encoding). * ]| The above pipeline writes a test pnm file (ASCII encoding).
* </refsect2> * </refsect2>
*/ */

View file

@ -10,7 +10,7 @@ Creating example data
===================== =====================
gst-launch videotestsrc num_buffers=300 ! \ gst-launch videotestsrc num_buffers=300 ! \
video/x-raw-yuv,format=\(fourcc\)I420,width=320,height=240 ! \ video/x-raw,format=\(string\)I420,width=320,height=240 ! \
filesink location=raw filesink location=raw

View file

@ -24,7 +24,7 @@
#define GST_LICENSE "LGPL" #define GST_LICENSE "LGPL"
/* package name in plugins */ /* package name in plugins */
#define GST_PACKAGE_NAME "GStreamer Bad Plug-ins source release" #define GST_PACKAGE_NAME "GStreamer Bad Plug-ins git"
/* package origin */ /* package origin */
#define GST_PACKAGE_ORIGIN "Unknown package origin" #define GST_PACKAGE_ORIGIN "Unknown package origin"
@ -199,7 +199,7 @@
#undef USE_POISONING #undef USE_POISONING
/* Version number of package */ /* Version number of package */
#define VERSION "0.11.94" #define VERSION "0.11.94.1"
/* Define to 1 if your processor stores words with the most significant byte /* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */ first (like Motorola and SPARC, unlike Intel and VAX). */