Please see the code below and the result. How can we get the gif in the original dimensions. The moviepy documentation doesn't seem to say much.
from moviepy.editor import * import os os.chdir(r'G:\') clip = VideoFileClip("VID.mp4").subclip(6*60, 6.1*60) clip.write_gif("vidgif.gif",program = 'ffmpeg')