Skip to content

Instantly share code, notes, and snippets.

@x86demon
Created December 5, 2023 15:17
Show Gist options
  • Save x86demon/ef12530e947311b4398ed2ab3fa71892 to your computer and use it in GitHub Desktop.
Save x86demon/ef12530e947311b4398ed2ab3fa71892 to your computer and use it in GitHub Desktop.
Compress all videos in folder
#!/bin/sh
for i in *.mp4; do ffmpeg -i "$i" -vcodec libx265 -crf 28 "compressed/$i";done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment