Skip to content

Instantly share code, notes, and snippets.

@Flushot
Created June 1, 2019 07:38
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 Flushot/ed8efa906d12e9b0d4474b9419b2bbba to your computer and use it in GitHub Desktop.
Save Flushot/ed8efa906d12e9b0d4474b9419b2bbba to your computer and use it in GitHub Desktop.
Transforms Final Cut Pro master file into lower res MP4
#!/bin/sh
ffmpeg -i $1.mov -vf "scale=iw/2:ih/2" -vcodec libx264 -crf 20 $1.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment