URI: 
       brtv-imgs-to-video.sh: fix scaling of source image during letterboxing - bitreich-tv - Meme TV encoding and streaming
  HTML git clone git://bitreich.org/bitreich-tv git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/bitreich-tv
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR LICENSE
       ---
   DIR commit dad99ef297a6b358887e7c24e432c01ad3f51832
   DIR parent e42fa4ac52c147b5953f43ed4634609aebb84174
  HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
       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(-)
       ---
   DIR 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"
        }