tools/video-util.sh: fix --output

This commit is contained in:
Evgeny Zinoviev 2022-06-07 18:09:00 +03:00
parent aabd735fd2
commit 49106dd29d

View File

@ -13,6 +13,7 @@ YELLOW=$(tput setaf 3)
CYAN=$(tput setaf 6)
input=
output=
command=
roi_file=
motion_threshold=1
@ -261,6 +262,11 @@ while [[ $# -gt 0 ]]; do
shift; shift
;;
-o|--output)
output="$2"
shift; shift
;;
--roi-file)
roi_file="$2"
shift; shift