surfing with the alien
Release Date: Oct 15 1987 / 20th Anniversary Edition: Aug 7 2007 / Deluxe Edition: Nov 29 2019

ffmpeg -i "Young.Sheldon.S04E17.mkv" -vf cropdetect -f null - 2>&1 | grep crop Then re-encode with detected crop:

ffmpeg -i "input.mkv" -itsoffset 0.2 -i "input.mkv" -map 1:v -map 0:a -c copy sync_fixed.mkv (Adjust 0.2 seconds – try -0.2 if audio is ahead)

ffmpeg -i "Young.Sheldon.S04E17.mkv" -vf "crop=1920:800:0:140" -c:v libx264 -crf 18 -preset fast -c:a copy output.mkv If audio drifts after ~10 minutes:

Better method – delay audio stream directly: