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

13 lines
355 B
Markdown
Raw Normal View History

2022-01-18 15:55:35 -03:00
# avifenc
> AV1 Image File Format (AVIF) encoder.
> More information: <https://aomediacodec.github.io/av1-avif/>.
- Convert a specific PNG image to AVIF:
2023-07-30 18:20:30 +05:30
`avifenc {{path/to/input.png}} {{path/to/output.avif}}`
2022-01-18 15:55:35 -03:00
2023-07-30 18:20:30 +05:30
- Encode with a specific speed (6=default, 0=slowest and 10=fastest):
2022-01-18 15:55:35 -03:00
2023-07-30 18:20:30 +05:30
`avifenc --speed {{2}} {{path/to/input.png}} {{path/to/output.avif}}`