Skip to content

Instantly share code, notes, and snippets.

@brutella
Last active April 18, 2016 12:42
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 brutella/68d79f91e472cf3864b0551b145ce980 to your computer and use it in GitHub Desktop.
Save brutella/68d79f91e472cf3864b0551b145ce980 to your computer and use it in GitHub Desktop.
Reduce frame rate of video to make screen recording from Quicktime compatible with App Store App Preview
# from http://stackoverflow.com/questions/11004137/re-sampling-h264-video-to-reduce-frame-rate-while-maintaining-high-image-quality
ffmpeg -y -i source.mov -r 30 -s 750x1334 -c:v libx264 -b:v 3M -strict -2 -movflags faststart destination.mov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment