brtv-imgs-to-video.sh: fix scaling of source image during letterboxing - bitrei… | |
git clone git://bitreich.org/bitreich-tv git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfr… | |
Log | |
Files | |
Refs | |
Tags | |
LICENSE | |
--- | |
commit dad99ef297a6b358887e7c24e432c01ad3f51832 | |
parent e42fa4ac52c147b5953f43ed4634609aebb84174 | |
Author: Anders Damsgaard <[email protected]> | |
Date: Thu, 3 Jun 2021 19:41:40 +0200 | |
brtv-imgs-to-video.sh: fix scaling of source image during letterboxing | |
Diffstat: | |
M bin/brtv-imgs-to-video.sh | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/bin/brtv-imgs-to-video.sh b/bin/brtv-imgs-to-video.sh | |
@@ -35,7 +35,7 @@ regeximatch() { | |
} | |
fit_img_16_9() { | |
- convert -resize "$video_resolution"\> -size "$video_resolution" "$1" \ | |
+ convert -resize "$video_resolution" -size "$video_resolution" "$1" \ | |
"$bgcontent" +swap -gravity center -composite "$2" | |
} | |