Merge branch 'master' of ssh://bitreich.org/scm/various - various - Various uti… | |
git clone git://bitreich.org/various/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinw… | |
Log | |
Files | |
Refs | |
Tags | |
--- | |
commit 51e412dc56c90c102187ebbda77a3ce95534aae7 | |
parent b83f066d501f08ecd889ac374543a7e45f2258f8 | |
Author: Christoph Lohmann <[email protected]> | |
Date: Tue, 18 Oct 2022 20:08:12 +0200 | |
Merge branch 'master' of ssh://bitreich.org/scm/various | |
Diffstat: | |
M quinq-size | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/quinq-size b/quinq-size | |
@@ -12,7 +12,7 @@ function toquinqsize { | |
output="${filename%.*}_quinqsize.${filename##*.}" | |
case "${mimetype}" in | |
image/*) | |
- convert "$filename" -resize 1024 "${output}"; | |
+ convert "$filename" -resize '1024>' "${output}"; | |
;; | |
video/*) | |
ffmpeg -i "${filename}" -vf 'scale=w=min(iw\,800):h=-2' "${out… |