Skip to content

Instantly share code, notes, and snippets.

@nickcheng
Created February 13, 2020 07:31
Show Gist options
  • Save nickcheng/46d045fa78570e3499e8b59407f740f4 to your computer and use it in GitHub Desktop.
Save nickcheng/46d045fa78570e3499e8b59407f740f4 to your computer and use it in GitHub Desktop.
Convert iPhone video to smaller size
# For horizontal video
ffmpeg -i input_file_name -c:v libx264 -c:a copy -r 25 -b 3.5M -s 768x432 output_file_name
# For portrait video
ffmpeg -i input_file_name -c:v libx264 -c:a copy -r 25 -b 3.5M -s 432x768 output_file_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment