rwxrob-dot/scripts/tohd
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

9 lines
162 B
Bash
Executable File

#!/bin/sh
from="$1"
to="$2"
if [ -z "$1" -o -z "$2" ];then
usageln "tohd <fromfile> <tofile>"
exit 0
fi
ffmpeg -i "$from" -c:a copy -vf scale=1920:1080 "$to"