DEV Community

Discussion on: Convert mp4 to gif

Collapse
 
themilantej profile image
Milan Tejani

use this command:

ffmpeg -ss 30 -t 3 -i input.mp4 -vf "fps=10,scale=320👎flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 output.gif

Collapse
 
halivert profile image
Halí

Thank you for this shortcut 😌