Skip to content

Instantly share code, notes, and snippets.

@hz37
Created March 4, 2021 14:31
Show Gist options
  • Save hz37/75e9cd06c63c3a78715a4bcbbd3445f2 to your computer and use it in GitHub Desktop.
Save hz37/75e9cd06c63c3a78715a4bcbbd3445f2 to your computer and use it in GitHub Desktop.
Automator /bin/bash shell script for MacOS file conversion Finder Quick Action
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