Skip to content

Instantly share code, notes, and snippets.

@alexsorokoletov
Created May 14, 2020 03:48
Show Gist options
  • Save alexsorokoletov/bfaa2bdacb4f16c1cb83bc18bb9ef173 to your computer and use it in GitHub Desktop.
Save alexsorokoletov/bfaa2bdacb4f16c1cb83bc18bb9ef173 to your computer and use it in GitHub Desktop.
ffmpeg commands for compressing video to share in the email
ffmpeg -i input.mp4 -vcodec libx264 -crf 23 output1.mp4
ffmpeg -i input.mp4 -vcodec libx264 -crf 23 -vf "scale=iw/2:ih/2" output2.mp4
@alexsorokoletov
Copy link
Author

Also can use CRF 28

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment