summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-05-25 23:58:37 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-05-26 09:51:51 +0100
commit23cdff62ea756f45a3ae4b6dd7f9b35c0d7c140c (patch)
treeec33f5fa745de6797bc4ce6f5c8484a2f514d992
parent91f901975ad46653d7da44a8fae0721fc89afade (diff)
docs: fix cdparanoia example pipeline in gst-launch man page
-rw-r--r--tools/gst-launch.1.in15
1 files changed, 10 insertions, 5 deletions
diff --git a/tools/gst-launch.1.in b/tools/gst-launch.1.in
index 53efd8892..e24965626 100644
--- a/tools/gst-launch.1.in
+++ b/tools/gst-launch.1.in
@@ -272,14 +272,19 @@ Plays a .WAV file that contains raw audio data (PCM).
Convert a .WAV file containing raw audio data into an Ogg Vorbis or mp3 file
.B
- gst\-launch cdparanoia ! lame ! filesink location=cd.mp3
+ gst\-launch cdparanoiasrc mode=continuous ! audioconvert ! lame ! id3v2mux ! filesink location=cd.mp3
.br
rips all tracks from compact disc and convert them into a single mp3 file
-Using \fBgst\-inspect\fR(1), it is possible to discover settings for cdparanoia
-that will tell it to rip individual tracks. Alternatively, you can use an URI
-and gst-launch will find an element (such as cdparanoia) that supports that
-protocol for you, e.g.:
+.B
+ gst\-launch cdparanoiasrc track=5 ! audioconvert ! lame ! id3v2mux ! filesink location=track5.mp3
+.br
+rips track 5 from the CD and converts it into a single mp3 file
+
+Using \fBgst\-inspect\fR(1), it is possible to discover settings like the above
+for cdparanoiasrc that will tell it to rip the entire cd or only tracks of it.
+Alternatively, you can use an URI and gst-launch will find an element (such as
+cdparanoia) that supports that protocol for you, e.g.:
.B
gst\-launch cdda://5 ! lame vbr=new vbr-quality=6 ! filesink location=track5.mp3