@@ -42,7 +42,7 @@ the convention is that FLAC files have the extension ".flac"
4242Before going into the full command-line description, a few other things
4343help to sort it out:
44441 . flac encodes by default, so you must use -d to decode
45- 2 . the options -0 .. -8 (or --fast and --best) that control the
45+ 2 . the options -0 .. -8 (or \ - -fast and \ - -best) that control the
4646 compression level actually are just synonyms for different groups of
4747 specific encoding options (described later) and you can get the same
4848 effect by using the same options. When specific options are specified
@@ -66,7 +66,7 @@ the desired operation on each input file to similarly named output files
6666(meaning for encoding, the extension will be replaced with ".flac", or
6767appended with ".flac" if the input file has no extension, and for
6868decoding, the extension will be ".wav" for WAVE output and ".raw" for raw
69- output). The original file is not deleted unless --delete-input-file is
69+ output). The original file is not deleted unless \ - -delete-input-file is
7070specified.
7171
7272If you are encoding/decoding from stdin to a file, you should use the -o
@@ -85,7 +85,7 @@ RIFF WAVE header contents when necessary.
8585
8686Also, you can force output data to go to stdout using -c.
8787
88- To encode or decode files that start with a dash, use -- to signal the
88+ To encode or decode files that start with a dash, use \ - - to signal the
8989end of options, to keep the filenames themselves from being treated as
9090options:
9191
@@ -154,7 +154,7 @@ Some common **encoding** tasks using flac:
154154` flac abc.flac --force `
155155: This one's a little tricky: notice that flac is in encode mode by
156156 default (you have to specify -d to decode) so this command actually
157- recompresses abc.flac back to abc.flac. --force is needed to make
157+ recompresses abc.flac back to abc.flac. \ - -force is needed to make
158158 sure you really want to overwrite abc.flac with a new version. Why
159159 would you want to do this? It allows you to recompress an existing
160160 FLAC file with (usually) higher compression options or a newer
@@ -167,16 +167,19 @@ Some common **decoding** tasks using flac:
167167 -d it means re-encode abc.flac to abc.flac (see above).
168168
169169` flac -d --force-aiff-format abc.flac `
170+
170171` flac -d -o abc.aiff abc.flac `
171172: Two different ways of decoding abc.flac to abc.aiff (AIFF format).
172173 abc.flac is not deleted.
173174
174175` flac -d --force-rf64-format abc.flac `
176+
175177` flac -d -o abc.rf64 abc.flac `
176178: Two different ways of decoding abc.flac to abc.rf64 (RF64 format).
177179 abc.flac is not deleted.
178180
179181` flac -d --force-wave64-format abc.flac `
182+
180183` flac -d -o abc.w64 abc.flac `
181184: Two different ways of decoding abc.flac to abc.w64 (Wave64 format).
182185 abc.flac is not deleted.
@@ -559,14 +562,14 @@ the HTML documentation.
559562 ends with * .aif* or * .aiff* , * .rf64* and * .w64* respectively. Also,
560563 this option has no effect when encoding since input is
561564 auto-detected. When none of these options nor
562- --keep-foreign-metadata are given and no output filename is set,
565+ \ - -keep-foreign-metadata are given and no output filename is set,
563566 the output format is WAV by default.
564567
565568** \- -force-legacy-wave-format**
566569** \- -force-extensible-wave-format**
567570: Instruct the decoder to output a WAVE file with WAVE_FORMAT_PCM and
568571 WAVE_FORMAT_EXTENSIBLE respectively. If none of these options nor
569- --keep-foreign-metadata are given, FLAC outputs WAVE_FORMAT_PCM
572+ \ - -keep-foreign-metadata are given, FLAC outputs WAVE_FORMAT_PCM
570573 for mono or stereo with a bit depth of 8 or 16 bits, and
571574 WAVE_FORMAT_EXTENSIBLE for all other audio formats.
572575
0 commit comments