Add one-liner to ffmpeg cheat

This adds a way to convert a gif to an animated avif!
This commit is contained in:
Lily Hannah 2025-04-26 03:06:16 -04:00
parent 11dbcdef83
commit 5ac90e459c
Signed by: SapphicSakuraFox
SSH key fingerprint: SHA256:eDeo8J1v9taxSQLWX8fHD+Zagr5cU+ExRHmF/Wk5evY

View file

@ -0,0 +1,4 @@
% ffmpeg
# Convert a .gif into an animated .avif
ffmpeg -i "<file_name>.gif" -strict -1 -f yuv4mpegpipe -pix_fmt yuva444p - | avifenc --stdin "<file_name>-c.avif"