summaryrefslogtreecommitdiff
path: root/bin/decode+edit
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2017-05-16 14:20:01 +0200
committerJonas Smedegaard <dr@jones.dk>2017-05-16 14:20:01 +0200
commitc19b33c6eda0232d045df9f323524ec8d812c260 (patch)
tree3b5883a3875e7dd0dc57ebe22779cdcac2a3d27e /bin/decode+edit
parent5919275dde112187c5aeedeb7b4a76de8a7eb3dd (diff)
Scale anamorphic to square-pixel as needed.
Diffstat (limited to 'bin/decode+edit')
-rwxr-xr-xbin/decode+edit3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/decode+edit b/bin/decode+edit
index 9f34d01..16c3155 100755
--- a/bin/decode+edit
+++ b/bin/decode+edit
@@ -13,11 +13,12 @@ HEIGHT=360
mkdir -p $(dirname "$OUTPUT")
# + loop-in-filter trick based on http://video.stackexchange.com/a/16933
+# + scale to square pixels as needed
ffmpeg -hide_banner -threads auto -y \
-i "$INPUT" \
-i "$LOGO"
-filter_complex \
- "[0:v]scale=-2:$HEIGHT[bg];
+ "[0:v]scale=iw*sar*$HEIGHT/ih:$HEIGHT,setsar=1[bg];
[bg][1:v]overlay=main_w-overlay_w-20:main_h-overlay_h-20[v]" \
-map '[v]' \
-f yuv4mpegpipe "$OUTPUT"