Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. param (
  2. [string]$i,
  3. [string]$o = $i + ".gif",
  4. [string]$fps=7,
  5. [string]$scale=640
  6. )
  7.  
  8. ffmpeg -y -i $i -vf fps=$fps,scale=${scale}:-1:flags=lanczos,palettegen palette.png
  9. ffmpeg -y -i $i -i palette.png -filter_complex "fps=$fps,scale=${scale}:-1:flags=lanczos[x];[x][1:v]paletteuse" $o
  10. del palette.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement