summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2015-05-10 11:34:33 +0100
committerTim-Philipp Müller <tim@centricular.com>2015-05-10 11:34:33 +0100
commitf034f77b73d59754de5b3822e6075c14ae9338ee (patch)
treebca8df71bd4aa4bf3af2462115a74f2ae7190d69 /gst
parent9a18b9e4ce6e38f40d743777f6095845f2fa6414 (diff)
docs: update example pipelines in element docs
Mostly gst-launch -> gst-launch-1.0, but also use autoaudiosink/autovideosink in more places and update pipelines a little or flesh out descriptions.
Diffstat (limited to 'gst')
-rw-r--r--gst/realmedia/rademux.c6
-rw-r--r--gst/xingmux/gstxingmux.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/gst/realmedia/rademux.c b/gst/realmedia/rademux.c
index 130f7a84..5aa92ac4 100644
--- a/gst/realmedia/rademux.c
+++ b/gst/realmedia/rademux.c
@@ -25,13 +25,13 @@
* <refsect2>
* <title>Example launch line</title>
* |[
- * gst-launch filesrc location=interview.ra ! rademux ! ffdec_real_288 ! audioconvert ! audioresample ! alsasink
+ * gst-launch-1.0 filesrc location=interview.ra ! rademux ! avdec_real_288 ! audioconvert ! audioresample ! autoaudiosink
* ]| Read a RealAudio file and decode it and output it to the soundcard using
* the ALSA element. The .ra file is assumed to contain RealAudio version 2.
* |[
- * gst-launch gnomevfssrc location=http://www.example.org/interview.ra ! rademux ! a52dec ! audioconvert ! audioresample ! alsasink
+ * gst-launch-1.0 souphttpsrc location=http://www.example.org/interview.ra ! rademux ! ac3parse ! a52dec ! audioconvert ! audioresample ! autoaudiosink
* ]| Stream RealAudio data containing AC3 (dnet) compressed audio and decode it
- * and output it to the soundcard using the ALSA element.
+ * and output it to the soundcard.
* </refsect2>
*/
diff --git a/gst/xingmux/gstxingmux.c b/gst/xingmux/gstxingmux.c
index fd09ac07..26c61961 100644
--- a/gst/xingmux/gstxingmux.c
+++ b/gst/xingmux/gstxingmux.c
@@ -33,9 +33,9 @@
* <refsect2>
* <title>Example launch line</title>
* |[
- * gst-launch audiotestsrc num-buffers=1000 ! audioconvert ! lamemp3enc ! xingmux ! filesink location=test.mp3
- * gst-launch filesrc location=test.mp3 ! xingmux ! filesink location=test2.mp3
- * gst-launch filesrc location=test.mp3 ! mp3parse ! xingmux ! filesink location=test2.mp3
+ * gst-launch-1.0 audiotestsrc num-buffers=1000 ! audioconvert ! lamemp3enc ! xingmux ! filesink location=test.mp3
+ * gst-launch-1.0 filesrc location=test.mp3 ! xingmux ! filesink location=test2.mp3
+ * gst-launch-1.0 filesrc location=test.mp3 ! mp3parse ! xingmux ! filesink location=test2.mp3
* ]|
* </refsect2>
*/