Skip to content

Instantly share code, notes, and snippets.

@ademar111190
Created October 2, 2023 16:57
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 ademar111190/6eab09def170690bcab8da5a8db34b5c to your computer and use it in GitHub Desktop.
Save ademar111190/6eab09def170690bcab8da5a8db34b5c to your computer and use it in GitHub Desktop.
Reduce the size of a video (handbreak does better)
#!/usr/bin/env bash
filename=$(basename -- "$1")
filename="${filename%.*}"
ffmpeg -i $1 -vcodec libx265 -crf 30 ${filename}-min.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment