From c28331964b9f5ad05a841615f7ce8ff68ca0547b Mon Sep 17 00:00:00 2001 From: AberDerBart Date: Tue, 9 Jan 2018 01:47:05 +0100 Subject: [PATCH] flac: add page --- pages/common/flac.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/flac.md diff --git a/pages/common/flac.md b/pages/common/flac.md new file mode 100644 index 0000000000..3d1a8af7bc --- /dev/null +++ b/pages/common/flac.md @@ -0,0 +1,16 @@ +# flac + +> Encodes, decodes and tests flac files. + + +- Encode a wav file to flac, writing to /path/to/file.flac: + +`flac {{/path/to/file.wav}}` + +- Decode a flac file to wav, specifying the output file: + +`flac -d --output-name {{/path/to/output.wav}} {{/path/to/input.flac}}` + +- Test a flac file: + +`flac -t {{/path/to/file.flac}}`