Skip to content

Instantly share code, notes, and snippets.

@euhmeuh
Last active May 10, 2017 14:13
Show Gist options
  • Save euhmeuh/d65fda6fdb4b24cc75f4ab7ead6c774c to your computer and use it in GitHub Desktop.
Save euhmeuh/d65fda6fdb4b24cc75f4ab7ead6c774c to your computer and use it in GitHub Desktop.
Use ffmpeg to compress a video using x264
# crf is the quality between 0 (lossless) and 51 (worst)
ffmpeg -i input.mp4 -vcodec libx264 -crf 20 output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment