cleaner output

This commit is contained in:
Jan Jastrow 2024-05-26 23:56:59 +02:00
parent 106abe8d75
commit 882be853a7

View File

@ -4,7 +4,7 @@
# ffmpeg function to find borders for cropping
function ff-crop() {
ffmpeg -hide_banner -i "$1" -vf cropdetect,metadata=mode=print -f null -
ffmpeg -hide_banner -i "$1" -vf cropdetect,metadata=mode=print -f null - 2>&1 | awk '/crop=/ { print $NF }'
}