Skip to content

Instantly share code, notes, and snippets.

@xDShot
Last active November 4, 2021 10:45
Show Gist options
  • Save xDShot/aa8681e1d7d259e5bd5fbe1837c6297c to your computer and use it in GitHub Desktop.
Save xDShot/aa8681e1d7d259e5bd5fbe1837c6297c to your computer and use it in GitHub Desktop.
crop
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