$input = "{{동영상 파일 이름}}"
$output = "{{output gif 이름}}"
ffmpeg -i $input -vf "fps=15,scale=720:-1:flags=lanczos,palettegen" -y palette.png
ffmpeg -i $input -i palette.png -lavfi "fps=15,scale=720:-1:flags=lanczos [x]; [x][1:v] paletteuse" -y $output
Remove-Item palette.png