mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
flacenc: add more example pipelines
This commit is contained in:
parent
163a7afa1a
commit
83f9cfb928
1 changed files with 9 additions and 2 deletions
|
@ -22,13 +22,20 @@
|
|||
*
|
||||
* flacenc encodes FLAC streams.
|
||||
* <ulink url="http://flac.sourceforge.net/">FLAC</ulink>
|
||||
* is a Free Lossless Audio Codec.
|
||||
* is a Free Lossless Audio Codec. FLAC audio can directly be written into
|
||||
* a file, or embedded into containers such as oggmux or matroskamux.
|
||||
*
|
||||
* <refsect2>
|
||||
* <title>Example launch line</title>
|
||||
* |[
|
||||
* gst-launch-1.0 audiotestsrc num-buffers=100 ! flacenc ! filesink location=beep.flac
|
||||
* ]|
|
||||
* ]| Encode a short sine wave into FLAC
|
||||
* |[
|
||||
* gst-launch-1.0 cdparanoiasrc mode=continuous ! queue ! audioconvert ! flacenc ! filesink location=cd.flac
|
||||
* ]| Rip a whole audio CD into a single FLAC file, with the track table saved as a CUE sheet inside the FLAC file
|
||||
* |[
|
||||
* gst-launch-1.0 cdparanoiasrc track=5 ! queue ! audioconvert ! flacenc ! filesink location=track5.flac
|
||||
* ]| Rip track 5 of an audio CD and encode it losslessly to a FLAC file
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in a new issue