FLAC Logo
  home  |   news  |   download  |   features  |   goals  |   format  |   comparison  |   documentation  |   developers  
documentation

This page describes the user-level view of the FLAC format (for a more detailed explanation see the format page). It also contains the user documentation for flac, which is the command-line file encoder/decoder, and the input plugins.

Keep in mind that the online version of this document will always apply to the latest release. For older releases, check the documentation included with the release package.

format

See the Scope, Architecture, Definitions, and Overview sections of the format page for a good introduction. This section will be expanded in the future.

flac

flac is the command-line file encoder/decoder. The input to the encoder and the output to the decoder must either be RIFF WAVE format, or raw interleaved sample data. flac only supports linear PCM samples (in other words, no A-LAW, uLAW, etc.). Another restriction (hopefully short-term) is that the input must be 8 or 16 bits per sample. This is not a limitation of the FLAC format, just the reference encoder.

flac assumes that RIFF WAVE files will have the extension ".wav"; this may be overridden with a command-line option. Other than this, flac makes no assumptions about file extensions, though the convention is that FLAC files have the extension ".flac" (or ".fla" on ancient file systems like FAT-16).

Before going into the full command-line description, two other things help to sort it out: 1) flac encodes by default, so you must use -d to decode; 2) the options -0 .. -9 that control the compression level actually are just synonyms for different groups of specific coding options (described later). You can get the same effect by using the same options.

flac will be invoked one of two ways, depending on whether you are encoding or decoding:

  • Encoding: flac [-s] [--skip #] [<format-options>] [<encoding options>] inputfile outputfile
  • Decoding: flac -d [-s] [--skip #] [<format-options>] inputfile outputfile

In either case, inputfile may be "-" for stdin, and "-" for stdout. The encoding options affect the compression ratio and encoding speed. The format options are used to tell flac the arrangement of samples if the input file (or output file when decoding) is a raw file. If it is a RIFF WAVE file the format options are not needed since they are read from the WAVE header.

General Options
-d Decode (flac encodes by default).
-s Silent: do not show encoding/decoding statistics.
--skip # Skip over the first # of samples of the input. This works for both encoding and decoding.

Encoding Options
--lax Allow encoder to generate non-Subset files. The resulting FLAC file may not be streamable, so you should only use this option in combination with custom encoding options meant for archival. File decoders will still be able play (and seek in) such files.
-b # Set the blocksize. The default is 1152 for -l 0, otherwise 4608. Subset streams must use one of 192/576/1152/2304/4608. The current encoder uses the same blocksize for the entire stream.
-m Enable mid-side coding (only for stereo streams). Tends to increase compression by a few percent on average. For each block both the stereo pair and mid-side versions of the block will be encoded, and smallest resulting frame will be stored. Currently mid-side encoding is only available when bits-per-sample <= 16.
-0 .. -9 Fastest compression .. highest compression. The default is -6.
-0 Synonymous with -l 0
-1 Synonymous with -l 0 -m
-2 Synonymous with -l 0 -m -r # (where # is set based on the blocksize)
-3 Reserved
-4 Synonymous with -l 8
-5 Synonymous with -l 8 -m
-6 Synonymous with -l 8 -m -r # (where # is set based on the blocksize)
-7 Reserved
-8 Synonymous with -l 32 -m -r # (where # is set based on the blocksize)
-9 Synonymous with -l 32 -m -e -r 99 -p. This is painfully slow but gives you the maximum compression flac can do for a given blocksize.
-e Exhaustive model search (expensive!). Normally the encoder estimates the best model to use and encodes once based on the estimate. With an exhaustive model search, the encoder will generate subframes for every order and use the smallest. If the max LPC order is high this can significantly increase the encode time but can shave off another 0.5%.
-l # Specifies the maximum LPC order. This number must be <= 32. If 0, the encoder will not attempt generic linear prediction, and use only fixed predictors. Using fixed predictors is faster but usually results in files being 5-10% larger.
-q # Specifies the precision of the quantized LP coefficients, in bits. The default is -q 0, which means let the encoder decide based on the signal. Unless you really know your input file it's best to leave this up to the encoder.
-p Do exhaustive LP coefficient quantization optimization. This option overrides any -q option. It is expensive and typically will only improve the compression a tiny fraction of a percent.
-r # Do Rice parameter optimization. By default the encoder uses a single Rice parameter for the subframe's entire residual. With this option, the residual is partitioned into 2^n pieces, each with its own Rice parameter. Higher values of n yield diminishing returns. The most bang for the buck is usually with -r 2 (more for higher blocksizes). This usually shaves off another 1.5%. The technique tends to peak out about when blocksize/(2^n)=128. Use -r 99 to force the highest degree of optimization.
-V Verify the encoding process. With this option, flac will create a parallel decoder that decodes the output of the encoder and compares the result against the original. It will abort immediately with an error if a mismatch occurs. -V increases the total encoding time but is guaranteed to catch any unforseen bug in the encoding process.
-m-, -e-, -p-, -V-, --lax- can all be used to turn off a particular option.

Format Options
-fb | -fl Specify big-endian | little-endian byte order in the raw file.
-fc # Specify the number of channels in the raw file.
-fp # Specify the number of bits per sample in the raw file.
-fs # Specify the sample rate of the raw file.
-fu Specify that the samples in the raw file are unsigned (the default is signed).
-fr Treat the input file (or output file if decoding) as a raw file, regardless of the extension.
-fw Treat the input file (or output file if decoding) as a RIFF WAVE file, regardless of the extension.

xmms plugin

All that is necessary is to copy libxmms-flac.so to the directory where XMMS looks for input plugins (usually /usr/lib/xmms/Input). There is nothing else to configure. Make sure to restart XMMS before trying to play any .flac files.

winamp plugin

All that is necessary is to copy in_flac.dll to the Plugins/ directory of your Winamp installation. There is nothing else to configure. Make sure to restart Winamp before trying to play any .flac files.