making gif from images using imageio in python
This works for me: import os import imageio png_dir=”../animation/png” images = [] for file_name in sorted(os.listdir(png_dir)): if file_name.endswith(‘.png’): file_path = os.path.join(png_dir, file_name) images.append(imageio.imread(file_path)) # Make it pause at the end so that the viewers can ponder for _ in range(10): images.append(imageio.imread(file_path)) imageio.mimsave(‘../animation/gif/movie.gif’, images)