Skip to content

Instantly share code, notes, and snippets.

@jsfag
Created August 28, 2022 10:13
Show Gist options
  • Save jsfag/fe5c663f35746aeaee6ece00f3526ab9 to your computer and use it in GitHub Desktop.
Save jsfag/fe5c663f35746aeaee6ece00f3526ab9 to your computer and use it in GitHub Desktop.
FFMPEG converts all *.JPG to *.JPG in the current directory.
for %%i in (*.jpg) do ffmpeg -y -i "%%i" "%%i"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment