Files
cheatsheet-tldr/tldr/flac
2025-12-22 00:22:43 +00:00

26 lines
691 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# flac
> Encode, decode, and test FLAC files.
> More information: <https://xiph.org/flac/>.
- Encode a WAV file to FLAC (this will create a FLAC file in the same location as the WAV file):
`flac {{path/to/file.wav}}`
- Encode a WAV file to FLAC, specifying the output file:
`flac {{[-o|--output-name]}} {{path/to/output.flac}} {{path/to/file.wav}}`
- Decode a FLAC file to WAV, specifying the output file:
`flac {{[-d|--decode]}} {{[-o|--output-name]}} {{path/to/output.wav}} {{path/to/file.flac}}`
- Test a FLAC file for the correct encoding:
`flac {{[-t|--test]}} {{path/to/file.flac}}`