mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-06 12:56:52 +00:00
Update cheatsheets
This commit is contained in:
25
flac
Normal file
25
flac
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# flac
|
||||
|
||||
> 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):
|
||||
|
||||
`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}}`
|
||||
Reference in New Issue
Block a user