You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
162 B
Bash

#!/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"