Skip to content

Instantly share code, notes, and snippets.

@Mygod
Created February 28, 2016 11:42
Show Gist options
  • Save Mygod/4f8455462f013d10ee1d to your computer and use it in GitHub Desktop.
Save Mygod/4f8455462f013d10ee1d to your computer and use it in GitHub Desktop.
Convert all JPG to black-and-white PNG in the current directory
@echo off
for /r %%f in (*.jpg) do path\to\ffmpeg -i "%%~pf%%~nf.jpg" -pix_fmt monob "%%~pf%%~nf.png"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment