summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-06-22 00:56:34 +0300
committerSebastian Dröge <sebastian@centricular.com>2016-06-22 00:56:34 +0300
commitb8bb7923af69ad83122214a4daaeb0f43a759bc3 (patch)
tree3ca1647caccdb0ea7b48fd40a7c8bf243da68cf9
parent3a6ba3125fb3cc0952f977b8af10e1a34141de2a (diff)
s/ffmpegcolorspace/videoconvert/ in a few places
-rw-r--r--gst-launch.md12
-rw-r--r--sdk-basic-tutorial-dynamic-pipelines.md2
-rw-r--r--sdk-installing-for-android-development.md2
3 files changed, 8 insertions, 8 deletions
diff --git a/gst-launch.md b/gst-launch.md
index 40a1cde..043745f 100644
--- a/gst-launch.md
+++ b/gst-launch.md
@@ -171,7 +171,7 @@ substituted with "d3dvideosink", "ximagesink", "sdlvideosink",
might accept different formats and even the same sink might accept
different formats on different machines, so you might need to add
converter elements like audioconvert and audioresample (for audio) or
-ffmpegcolorspace (for video) in front of the sink to make things work.
+videoconvert (for video) in front of the sink to make things work.
**Audio playback**
@@ -247,16 +247,16 @@ audioconvert ! audioresample ! osssink** Play both video and audio
portions of an MPEG movie
**gst-launch-1.0 filesrc location=movie.mpg ! mpegdemux name=demuxer
-demuxer. ! queue ! mpeg2dec ! ffmpegcolorspace ! sdlvideosink demuxer. !
+demuxer. ! queue ! mpeg2dec ! videoconvert ! sdlvideosink demuxer. !
queue ! mad ! audioconvert ! audioresample ! osssink** Play an AVI movie
with an external text subtitle stream
This example also shows how to refer to specific pads by name if an
element (here: textoverlay) has multiple sink or source pads.
-**gst-launch-1.0 textoverlay name=overlay ! ffmpegcolorspace !
+**gst-launch-1.0 textoverlay name=overlay ! videoconvert !
videoscale ! autovideosink filesrc location=movie.avi ! decodebin2 !
-ffmpegcolorspace ! overlay.video\_sink filesrc location=movie.srt !
+videoconvert ! overlay.video\_sink filesrc location=movie.srt !
subparse ! overlay.text\_sink**
Play an AVI movie with an external text subtitle stream using playbin
@@ -270,7 +270,7 @@ Stream video using RTP and network elements.
**gst-launch-1.0 v4l2src !
video/x-raw-yuv,width=128,height=96,format='(fourcc)'UYVY !
-ffmpegcolorspace ! ffenc\_h263 ! video/x-h263 ! rtph263ppay pt=96 !
+videoconvert ! ffenc\_h263 ! video/x-h263 ! rtph263ppay pt=96 !
udpsink host=192.168.1.1 port=5000 sync=false** Use this command on the
receiver
@@ -299,7 +299,7 @@ audioresample ! osssink** Play any supported audio format
**gst-launch-1.0 filesrc location=videofile ! decodebin name=decoder
decoder. ! queue ! audioconvert ! audioresample ! osssink decoder. !
-ffmpegcolorspace ! xvimagesink** Play any supported video format with
+videoconvert ! xvimagesink** Play any supported video format with
video and audio output. Threads are used automatically. To make this
even easier, you can use the playbin element:
diff --git a/sdk-basic-tutorial-dynamic-pipelines.md b/sdk-basic-tutorial-dynamic-pipelines.md
index c05acef..39df891 100644
--- a/sdk-basic-tutorial-dynamic-pipelines.md
+++ b/sdk-basic-tutorial-dynamic-pipelines.md
@@ -488,7 +488,7 @@ program exit to free all resources.
Dynamic pad linking has traditionally been a difficult topic for a lot
of programmers. Prove that you have achieved its mastery by
-instantiating an `autovideosink` (probably with an `ffmpegcolorspace` in
+instantiating an `autovideosink` (probably with an `videoconvert` in
front) and link it to the demuxer when the right pad appears. Hint: You
are already printing on screen the type of the video pads.
diff --git a/sdk-installing-for-android-development.md b/sdk-installing-for-android-development.md
index 320760b..33d6894 100644
--- a/sdk-installing-for-android-development.md
+++ b/sdk-installing-for-android-development.md
@@ -262,7 +262,7 @@ and used as follows:
| Category | Included plugins |
|--------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| `GSTREAMER_PLUGINS_CORE` | coreelements coreindexers adder app audioconvert audiorate audioresample audiotestsrc ffmpegcolorspace gdp gio pango typefindfunctions videorate videoscale videotestsrc volume autodetect videofilter |
+| `GSTREAMER_PLUGINS_CORE` | coreelements coreindexers adder app audioconvert audiorate audioresample audiotestsrc videoconvert gdp gio pango typefindfunctions videorate videoscale videotestsrc volume autodetect videofilter |
| `GSTREAMER_PLUGINS_PLAYBACK` | decodebin playbin |
| `GSTREAMER_PLUGINS_CODECS` | subparse ogg theora vorbis alaw annodex apetag audioparsers auparse avi flac flv flxdec icydemux id3demux isomp4 jpeg matroska mulaw multipart png speex taglib wavenc wavpack wavparse y4menc adpcmdec adpcmenc aiff cdxaparse dtmf dvbsuboverlay dvdspu fragmented hdvparse id3tag ivfparse jp2k kate mve mxf nsf nuvdemux opus pcapparse pnm schro siren subenc tta videoparsersbad vmnc vp8 y4mdec |
| `GSTREAMER_PLUGINS_VIS` | libvisual goom goom2k1 audiovisualizers |