From 163a7afa1a1eb72d7ae4cc00e52be6ab5aef73b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 23 Mar 2013 12:59:26 +0000 Subject: [PATCH] wavenc: add some example pipelines --- gst/wavenc/gstwavenc.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/gst/wavenc/gstwavenc.c b/gst/wavenc/gstwavenc.c index 885c20d4f4..bb9547da63 100644 --- a/gst/wavenc/gstwavenc.c +++ b/gst/wavenc/gstwavenc.c @@ -22,7 +22,17 @@ /** * SECTION:element-wavenc * - * Format a audio stream into the wav format. + * Format an audio stream into the wav format. + * + * + * Example launch line + * |[ + * gst-launch-1.0 cdparanoiasrc mode=continuous ! queue ! audioconvert ! wavenc ! filesink location=cd.wav + * ]| Rip a whole audio CD into a single wav file, with the track table written into a CUE sheet inside the file + * |[ + * gst-launch-1.0 cdparanoiasrc track=5 ! queue ! audioconvert ! wavenc ! filesink location=track5.wav + * ]| Rip track 5 of an audio CD into a single wav file containing unencoded raw audio samples. + * * */ #ifdef HAVE_CONFIG_H