Skip to content

Instantly share code, notes, and snippets.

@iflamed
Created February 1, 2020 03:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iflamed/b9977842c95fbb128d4055a82268f218 to your computer and use it in GitHub Desktop.
Save iflamed/b9977842c95fbb128d4055a82268f218 to your computer and use it in GitHub Desktop.
compress mp4 format video
for f in *.mp4;
do
ffmpeg -i "$f" -vcodec libx264 -crf 28 cpmmp4/"${f%.mp4}".mp4
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment