1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/reflac.md

25 lines
523 B
Markdown
Raw Normal View History

2020-02-26 00:19:03 +00:00
# reflac
> Recompress FLAC files in-place while preserving metadata.
> More information: <https://github.com/chungy/reflac>.
- Recompress a directory of FLAC files:
`reflac {{path/to/directory}}`
- Enable maximum compression (very slow):
`reflac --best {{path/to/directory}}`
- Display filenames as they are processed:
`reflac --verbose {{path/to/directory}}`
- Recurse into subdirectories:
`reflac --recursive {{path/to/directory}}`
2020-12-04 07:37:44 -05:00
- Preserve file modification times:
2020-02-26 00:19:03 +00:00
`reflac --preserve {{path/to/directory}}`