Skip to content

Instantly share code, notes, and snippets.

@interactiveRob
Created April 10, 2025 13:16
Show Gist options
  • Save interactiveRob/b5d385a55528bd636f4d55b4114a35cd to your computer and use it in GitHub Desktop.
Save interactiveRob/b5d385a55528bd636f4d55b4114a35cd to your computer and use it in GitHub Desktop.
Batch FFMPEG compress all files in folder mp4 to webm
for f in ./*mp4; do ffmpeg -i "$f" -c:v libvpx -crf 8 -b:v 1.5M -c:a libvorbis "compressed/$f.webm"; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment