Skip to content

Instantly share code, notes, and snippets.

@b13bs
Last active January 13, 2019 19:27
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 b13bs/e82b61f4e2807407b03499946885d222 to your computer and use it in GitHub Desktop.
Save b13bs/e82b61f4e2807407b03499946885d222 to your computer and use it in GitHub Desktop.
### compress image
convert -resize 75% $filename $newfilename
### compress video
# get kbps with
ffmpeg -i $filename
# compress with (kbps/2)
ffmpeg -i $filename -b $kbps $newfilename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment