Created
June 1, 2019 07:38
-
-
Save Flushot/ed8efa906d12e9b0d4474b9419b2bbba to your computer and use it in GitHub Desktop.
Transforms Final Cut Pro master file into lower res MP4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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