How to make a video to gif converter in python with code
🔰follow the steps ::
1. first open the python in any virtual environment software like . vs code
2. then create a new file in python
3. Named it whatever you want but use .py in the last for making this file for python
4. now use my code in it :
from time import get_clock_info
import types
from moviepy.editor import VideoFileClip
from tkinter.filedialog import *
video = askopenfilename()
clip = VideoFileClip(video)
clip.write_gif("makegif.gif", fps=10)
5. save it using save(Ctrl + S)
6. run this code
7.select the file
8.then the video file save as gif file
9. If you get error somehow then use my Code file for just click on download button
🙏thank you
Comments
Post a Comment