sindresorhus / Gifski

🌈 Convert videos to high-quality GIFs on your Mac
https://sindresorhus.com/gifski
MIT License
7.72k stars 290 forks source link

Feature request: Batch convert #291

Open caleidoscopio opened 1 year ago

caleidoscopio commented 1 year ago

I'm missing the ability to convert a list of mp4 files to gif.

sindresorhus commented 1 year ago

This is planned, but it won't happen soon as it will require large changes to Gifski. #244 has to be completed first too.

kornelski commented 1 year ago

Meanwhile you can use the command-line version to batch/automate, e.g.

for file in *.mp4; do gifski -o "$file.gif" "$file"; done