Skip to content

Instantly share code, notes, and snippets.

@litetex
Last active August 18, 2025 13:07
Show Gist options
  • Save litetex/82c6ad4f52274337d5826e86451b6b02 to your computer and use it in GitHub Desktop.
Save litetex/82c6ad4f52274337d5826e86451b6b02 to your computer and use it in GitHub Desktop.
FFMPEG to AVIF/WEBM convert script template
@echo off
for /r %%i in (*.jpg) do (
(ffmpeg -y -i "%%i" -c:v av1_amf "%%~dpni.avif" || ffmpeg -y -i "%%i" -c:v libsvtav1 "%%~dpni.avif") && del "%%i"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment