*: fix errors reported by languagetool (#6069)

This commit is contained in:
Seth Falco
2021-08-15 19:59:09 +02:00
committed by GitHub
parent 3fbefc8b77
commit 3e4c519004
281 changed files with 433 additions and 429 deletions

View File

@@ -1,20 +1,20 @@
# flac
> Encodes, decodes and tests flac files.
> Encodes, decodes and tests 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):
- 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:
- 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:
- 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:
- Test a FLAC file for the correct encoding:
`flac -t {{path/to/file.flac}}`