From 67d48a79847621c12f6c940bc57f92ccd3847b99 Mon Sep 17 00:00:00 2001 From: gutmet Date: Sat, 2 May 2020 11:54:18 +0200 Subject: [PATCH] use end position instead of duration --- cutVideo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cutVideo b/cutVideo index 0dd3db7..1f62da9 100755 --- a/cutVideo +++ b/cutVideo @@ -13,4 +13,4 @@ outfile="$dir/$filename""Cut.$extension" echo "$outfile" -ffmpeg -y -ss "$2" -t "$3" -i "$fullpath" "$outfile" +ffmpeg -y -ss "$2" -to "$3" -i "$fullpath" "$outfile"