Skip to content

Instantly share code, notes, and snippets.

@drzhnn
Created November 26, 2013 19:51
Show Gist options
  • Save drzhnn/7664997 to your computer and use it in GitHub Desktop.
Save drzhnn/7664997 to your computer and use it in GitHub Desktop.
Batch convert video files to MJPEG
for %%A in (%*) do ffmpeg -i %%A -c:v mjpeg -q:v 1 -c:a copy "%%~nA"_mjpeg.mov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment