Created
March 4, 2021 14:31
-
-
Save hz37/75e9cd06c63c3a78715a4bcbbd3445f2 to your computer and use it in GitHub Desktop.
Automator /bin/bash shell script for MacOS file conversion Finder Quick Action
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
for f in "$@" | |
do | |
echo "$f" | |
/usr/local/bin/ffmpeg -y -i "$f" -c:v dnxhd -s 1920x1080 -r 25 -an -b:v 75M -pix_fmt yuv422p "$f".mxf | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment