flac: introduce -o/--output-name with encode

This commit is contained in:
AberDerBart
2018-01-09 09:15:57 +01:00
committed by GitHub
parent c28331964b
commit b4d2f58298

View File

@@ -2,15 +2,18 @@
> Encodes, decodes and tests flac files.
- Encode a wav file to flac, writing to /path/to/file.flac:
`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 --output-name {{/path/to/output.wav}} {{/path/to/input.flac}}`
`flac -d --output-name {{/path/to/output.wav}} {{/path/to/file.flac}}`
- Test a flac file:
- Test a flac file for correct encoding:
`flac -t {{/path/to/file.flac}}`