1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 03:42:12 +02:00
tldr/pages/common/flac.md
2018-01-09 18:39:53 +00:00

19 lines
486 B
Markdown

# flac
> Encodes, decodes and tests flac files.
- 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 {{path/to/output.flac}} {{path/to/file.wav}}`
- Decode a flac file to wav, specifying the output file:
`flac -d -o {{path/to/output.wav}} {{path/to/file.flac}}`
- Test a flac file for the correct encoding:
`flac -t {{path/to/file.flac}}`