Post #3932031
2026-06-26 00:30 UTC
Convert a video file (e.g. from https://losslesscut.app/) to gif, downscaling & using only every 4th frame:
```bash
ffmpeg -i in.webm -vf "scale=384:216,setsar=1:1,select='not(mod(n,4))'" out.gif
```
- 384:216 → the new size `
#Bash #Linux #ffmpeg #gifmaking #fandom
Replies (0)
No replies.