Last active
November 4, 2021 10:45
-
-
Save xDShot/aa8681e1d7d259e5bd5fbe1837c6297c to your computer and use it in GitHub Desktop.
crop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export TIMETRIM="-ss 00:16 -to 00:24" | |
export SIZE_X=696 | |
export SIZE_Y=696 | |
export POS_X=611 | |
export POS_Y=65 | |
export SCALEX=300 | |
export SCLAEY=-1 | |
export FPS=20 | |
export FILTERS="[0:v]crop=$SIZE_X:$SIZE_Y:$POS_X:$POS_Y[vid];[vid]scale=$SCALEX:$SCLAEY:flags=lanczos[vid]" #"[0:v]crop=1103:621:444:242[vid]" | |
ffmpeg -y -framerate 30 -i $1_%04d.tga $TIMETRIM $1.mkv | |
ffmpeg -y -i $1.mkv -filter_complex "$FILTERS;[vid]palettegen" palette.png | |
ffmpeg -y -i $1.mkv -i palette.png -filter_complex "$FILTERS;[vid]fps=$FPS[vid];[vid][1:v]paletteuse" $1.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment