0
I am trying to resize a gif using ffmpeg. link here
This is the command I am using to resize the GIF
ffmpeg -hide_banner -v warning -i default.gif -filter_complex "[0:v] scale=320:-1:flags=lanczos,split [a][b]; [a] palettegen=reserve_transparent=on:transparency_color=ffffff [p]; [b][p] paletteuse" resize.gif
The problem is with the output. I am not sure the best way to describe it, but lets say the output GIF has huge "banding/ trailing" effect ( not desired ).
Sample output of the file is here Output here
I am not sure what is it that I am doing wrong and how can I fix this banding/ trailing effect.
In Chrome 72 on MacOS, I'm not seeing any banding / trailing effect in the output the original post. Please Edit the Question with the OS and program you're using to view the output. There may be an issue with your graphics card as well - try looking at it from another computer. – Christopher Hostage – 2019-03-11T19:32:54.347
Update your
ffmpeg
and the output will improve. Please always show the complete log and omit-hide_banner -v warning
. – llogan – 2019-03-11T22:42:55.653