mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
9 lines
162 B
Bash
Executable File
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"
|