diff --git a/ext/wavpack/gstwavpackenc.c b/ext/wavpack/gstwavpackenc.c index c1d259647a..beb3fb6b38 100644 --- a/ext/wavpack/gstwavpackenc.c +++ b/ext/wavpack/gstwavpackenc.c @@ -29,20 +29,20 @@ * Example launch line * * - * gst-launch audiotestsrc num-buffers=500 ! wavpackenc ! filesink location=sinewave.wv + * gst-launch audiotestsrc num-buffers=500 ! audioconvert ! wavpackenc ! filesink location=sinewave.wv * * This pipeline encodes audio from audiotestsrc into a Wavpack file. * * * - * gst-launch cdda://1 ! wavpackenc ! filesink location=track1.wv + * gst-launch cdda://1 ! audioconvert ! wavpackenc ! filesink location=track1.wv * * This pipeline encodes audio from an audio CD into a Wavpack file using * lossless encoding (the file output will be fairly large). * * * - * gst-launch cdda://1 ! wavpackenc bitrate=128000 ! filesink location=track1.wv + * gst-launch cdda://1 ! audioconvert ! wavpackenc bitrate=128000 ! filesink location=track1.wv * * This pipeline encodes audio from an audio CD into a Wavpack file using * lossy encoding at a certain bitrate (the file will be fairly small).