diff --git a/index.html b/index.html index 50e75dc..51a8869 100644 --- a/index.html +++ b/index.html @@ -2516,8 +2516,32 @@ - +
+

flac

+ + + + +
+

About flac tool

+

The flac tool is the tool created by the FLAC project to transcode to/from FLAC and to manipulate metadata in FLAC files. One advantage it has over other tools used to transcode into FLAC is the capability of embedding foreign metadata (such as BWF metadata). This means that it is possible to compress a BWF file into FLAC and maintain the ability to transcode back into an identical BWF, metadata and all. For a more detailed explanation, see Dave Rice's article on the topic, from which the following commands are adapted.

+

Transcode to FLAC

+

Use this command to transcode from WAV to FLAC while maintaining BWF metadata

+

flac --best --keep-foreign-metadata --preserve-modtime --verify input.wav

+
+
flac
starts the command
+
-i input_file.ext
path and name of the input file
+
--best
sets the file for the most efficient compression (resulting in a smaller file at the expense of a slower process).
+
--keep-foreign-metadata
tells the flac tool to maintain original metadata within the FLAC file.
+
--preserve-modtime
preserves the file timestamps of the input file.
+
--verify
verifies the validity of the output file.
+
+

Transcode from FLAC

+

Use this command to transcode from FLAC to reconstruct original BWF file. Command is the same as the prior command with the exception of substituting --decode for best and changing the input to a .flac file.

+

flac --decode --keep-foreign-metadata --preserve-modtime --verify input.flac

+
+