Permalink
Cannot retrieve contributors at this time
#!/usr/bin/env bash | |
# ffdeshake: Attempt to de-shake a video. | |
set -eo pipefail | |
function help { | |
echo "Usage: ffdeshake <input> <output>" | |
exit | |
} | |
function installed { | |
cmd=$(command -v "${1}") | |
[[ -n "${cmd}" ]] && [[ -f "${cmd}" ]] | |
return ${?} | |
} | |
[[ $# -eq 2 && -f $1 && ! -f $2 ]] || help | |
installed ffmpeg || { >&2 echo "Missing ffmpeg."; exit 1; } | |
ffmpeg -i "${1}" -vf deshake "${2}" |