Convert your images (video) to GIF
No limitations and watermark, for free!
- It require modules
moviepyandopencv-python
pip install -r requirement.txt- Convert images to GIF
python main.py --type image --file "folder to your images" --fps "frame rate of GIF"- Convert video to GIF
python main.py --type video --file "your video" --start "start time" --end "end time" --interval "Interval of pictures in gif" --fps "frame rate of GIF"You can also name your output gif with the --filename argument, there is no need to include .gif to the end of the filename.
- What argument
--intervalfor?
For example, if your video has 60 frames and I set--interval 5. This means that I will take one picture in 5 frames for generating GIF.