Created
April 2, 2021 01:56
-
-
Save chutaicho/cdc40d09c9fe72e29d5351c64703b2b2 to your computer and use it in GitHub Desktop.
a ffmpeg command to encodes any movie file into ProRes format.
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/bash | |
ffmpeg -i $1.mov -c:v prores -profile:v 3 -c:a pcm_s16le $1-ProResHQ.mov |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment