from moviepy.editor import ImageSequenceClip

# List of image file paths
image_files = [
    'Livia1.jpg',
    'Livia2.jpg',
    'Livia3.jpg',
]

# Create a video clip from the images
clip = ImageSequenceClip(image_files, fps=1)  # Adjust fps as needed

# Write the video file
clip.write_videofile('teletubby_movie.mp4', codec='libx264')
