“hacer gif a partir de imágenes en python” Código de respuesta

hacer gif a partir de imágenes en python

from moviepy.editor import *

clip = (VideoFileClip("video.mp4")
        .subclip((1,22.65),(1,23.2))
        .resize(0.3))
clip.write_gif("video.gif")
Weeke

hacer gif a partir de imágenes en python

import glob
import os

gif_name = 'outputName'
file_list = glob.glob('*.png') # Get all the pngs in the current directory
list.sort(file_list, key=lambda x: int(x.split('_')[1].split('.png')[0])) # Sort the images by #, this may need to be tweaked for your use case

with open('image_list.txt', 'w') as file:
    for item in file_list:
        file.write("%s\n" % item)

os.system('convert @image_list.txt {}.gif'.format(gif_name)) # On windows convert is 'magick'
Energetic Earthworm

hacer gif a partir de imágenes en python

from moviepy.editor import *

clip = (VideoFileClip("video.mp4")
        .subclip((1,22.65),(1,23.2))
        .resize(0.3))
clip.write_gif("video.gif")
Lokesh kumar

Respuestas similares a “hacer gif a partir de imágenes en python”

Preguntas similares a “hacer gif a partir de imágenes en python”

Más respuestas relacionadas con “hacer gif a partir de imágenes en python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código