#!/bin/bash -e ##################################################### # # This script will invert all colors of a video and # save the output in a ProRes video. # # Usage: bash ffmpeg/filter/negative.sh # ##################################################### INPUT="${1}" OUTPUT="${2}" # Check if output file extension is .mov if [[ "${OUTPUT}" != *".mov" ]]; then echo "Please use an .mov extension on your output file argument" exit 1 fi ffmpeg -i "${INPUT}" \ -vf negate \ -c:v prores_ks \ -profile:v 3 \ "${OUTPUT}"