summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2017-08-15 15:12:44 -0700
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2017-08-15 15:21:42 -0700
commit42cf3fbe800bf1111d9abe39b0d2c10dba401731 (patch)
treef584630f1a9f2ae276c43b34f40d5d69dff67fa5
parent53ec57d6be2d55232b4c1793c1c8a8f9d2360458 (diff)
faq: using: improve command line section
Group and reorder examples logically and add a short on note about auto sinks. Rework text as needed.
-rw-r--r--markdown/frequently-asked-questions/using.md77
1 files changed, 45 insertions, 32 deletions
diff --git a/markdown/frequently-asked-questions/using.md b/markdown/frequently-asked-questions/using.md
index 40e1ffe..a0df521 100644
--- a/markdown/frequently-asked-questions/using.md
+++ b/markdown/frequently-asked-questions/using.md
@@ -114,49 +114,62 @@ provide us with the necessary gdb output. See
## How do I use the GStreamer command line interface?
You access the GStreamer command line interface using the command
-`gst-launch-1.0`. To play a file you could just use
+`gst-launch-1.0`. For example, to play a file you could just use
+```
+gst-launch-1.0 playbin uri=file:///path/to/song.mp3
+```
- gst-play-1.0 song.mp3
+You can also use `gst-play`:
-or
+```
+gst-play-1.0 song.mp3
+```
- gst-launch-1.0 playbin uri=file:///path/to/song.mp3
+To decode an mp3 audio file and play it through Pulseaudio, you could use:
-To decode an mp3 audio file and play it through Pulseaudio, you could also use
+```
+gst-launch-1.0 filesrc location=thesong.mp3 ! mpegaudioparse ! mpg123audiodec ! audioconvert ! pulsesink
+```
- gst-launch-1.0 filesrc location=thesong.mp3 ! decodebin ! audioconvert ! pulsesink
+To automatically detect and select the right decoder for a given encoded stream
+in a pipeline, try any of the following:
-or
+```
+gst-launch-1.0 filesrc location=thesong.mp3 ! decodebin ! audioconvert ! pulsesink
+```
+```
+gst-launch-1.0 filesrc location=my-random-media-file.mpeg ! decodebin ! pulsesink
+```
+```
+gst-launch-1.0 filesrc location=my-random-media-file.mpeg ! decodebin ! videoconvert ! xvimagesink
+```
- gst-launch-1.0 filesrc location=thesong.mp3 ! mpegaudioparse ! mpg123audiodec ! audioconvert ! pulsesink
+Or even something more complicated like:
-. More examples can be found in the gst-launch man page.
-
-To automatically detect the right codec in a pipeline,
- try
-
- gst-launch-1.0 filesrc location=my-random-media-file.mpeg ! decodebin !
- pulsesink
-
-.
- or
-
- gst-launch-1.0 filesrc location=my-random-media-file.mpeg ! decodebin !
- videoconvert ! xvimagesink
+```
+gst-launch-1.0 filesrc location=my-random-media-file.mpeg !decodebin name=decoder \
+ decoder. ! queue ! videoconvert ! xvimagesink \
+ decoder. ! queue ! audioconvert ! pulsesink
+```
-Something more
- complicated:
+Building from the previous example, you can let GStreamer select an appropriate
+set of default sinks by replacing the specific output elements with these automatic
+alternatives:
- gst-launch-1.0 filesrc location=my-random-media-file.mpeg ! decodebin name=decoder
- decoder. ! queue ! videoconvert ! xvimagesink
- decoder. ! queue ! audioconvert ! pulsesink
+```
+gst-launch-1.0 filesrc location=my-random-media-file.mpeg !decodebin name=decoder \
+ decoder. ! queue ! videoconvert ! autovideosink \
+ decoder. ! queue ! audioconvert ! autoaudiosink
+```
-We also have a basic media playing plugin that will take care of most
-things for you. This plugin is called playbin. Try
- this:
+GStreamer also provides `playbin`, a basic media-playback plugin that
+automatically takes care of most playback details. The following example shows
+how to play any file as long as its format is supported, ie. you have the
+necessary demuxing and decoding plugins installed:
- gst-launch-1.0 playbin uri=file:///home/joe/my-random-media-file.mpeg
+```
+gst-launch-1.0 playbin uri=file:///home/joe/my-random-media-file.mpeg
+```
-This should play the file if the format is supported, ie. you have all
-the necessary demuxing and decoding and some output plugins installed.
+Additional examples can be found in the `gst-launch` manual page.