1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

flac: add page

This commit is contained in:
AberDerBart 2018-01-09 01:47:05 +01:00 committed by GitHub
parent 7c9e7aafe1
commit c28331964b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
pages/common/flac.md Normal file
View file

@ -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}}`