Initial commit

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-08-06 19:31:34 +03:00
commit c3b35a6a19
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
base.webm
out.mp4

BIN
base.mp4 Normal file

Binary file not shown.

12
wtfitpoc Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
# overlay.sh <overlay-image>
set -e
IMG="$1"
[ -z "$IMG" ] && { echo "Usage: $0 overlay.png"; exit 1; }
ffmpeg -y -i base.mp4 -i "$IMG" \
-filter_complex "[1:v]scale=1059:529:force_original_aspect_ratio=decrease[ov];[0:v][ov]overlay=306:540-h:enable='gte(n\,159)'" \
-af loudnorm=I=-16:TP=-1.5:LRA=11 \
-c:v libx264 -c:a aac -b:a 192k out.mp4