From f8c980ee57359651a7629f6c4a14575c9c2b1dcc Mon Sep 17 00:00:00 2001 From: Bauke Date: Thu, 19 Jan 2023 09:44:09 +0100 Subject: [PATCH] Add extract-clip function. --- .functions.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.functions.zsh b/.functions.zsh index d8c9930..3165f96 100644 --- a/.functions.zsh +++ b/.functions.zsh @@ -1,3 +1,7 @@ +extract-clip () { + ffmpeg -i "$1" -ss "$2" -to "$3" -c copy "$4" +} + gtag () { git tag -s -a "$1" -m "Version $1" }