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.