From 051e4fbf9a7a3ede5b847f073033dc5676221835 Mon Sep 17 00:00:00 2001 From: Bauke Date: Sat, 21 Jan 2023 13:09:33 +0100 Subject: [PATCH] Swap timestamp and input order to prevent keyframe freeze at video start. --- .functions.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.functions.zsh b/.functions.zsh index ec9e67b..02e1479 100644 --- a/.functions.zsh +++ b/.functions.zsh @@ -1,7 +1,7 @@ # Copies a section from a video using ffmpeg. # extract-clip extract-clip () { - ffmpeg -i "$1" -ss "$2" -to "$3" -c copy "$4" + ffmpeg -ss "$2" -i "$1" -to "$3" -c copy "$4" } # Creates a new signed, annotated git tag.