Skip to main content
added 127 characters in body
Source Link

Addition to Smart Manoj answers: Make a .mp4 movie from all images in a folder

Installation:

pip install imageio-ffmpeg
pip install imageio

Code:

import os
import imageio

root = r'path_to_folder_with_images'

images = []    
for subdir, dirs, files in os.walk(root):
    for file in files:
        images.append(imageio.imread(os.path.join(root,file)))

savepath = r'path_to_save_folder'
imageio.mimsave(os.path.join(savepath,'movie.mp4'), images)

PS: Make sure your "files" list is sorted the way you want, you will save some time if you already save your images accordingly

Addition to Smart Manoj answers: Make a .mp4 movie from all images in a folder

Installation:

pip install imageio-ffmpeg
pip install imageio

Code:

import os
import imageio

root = r'path_to_folder_with_images'

images = []    
for subdir, dirs, files in os.walk(root):
    for file in files:
        images.append(imageio.imread(os.path.join(root,file)))

savepath = r'path_to_save_folder'
imageio.mimsave(os.path.join(savepath,'movie.mp4'), images)

Addition to Smart Manoj answers: Make a .mp4 movie from all images in a folder

Installation:

pip install imageio-ffmpeg
pip install imageio

Code:

import os
import imageio

root = r'path_to_folder_with_images'

images = []    
for subdir, dirs, files in os.walk(root):
    for file in files:
        images.append(imageio.imread(os.path.join(root,file)))

savepath = r'path_to_save_folder'
imageio.mimsave(os.path.join(savepath,'movie.mp4'), images)

PS: Make sure your "files" list is sorted the way you want, you will save some time if you already save your images accordingly

Source Link

Addition to Smart Manoj answers: Make a .mp4 movie from all images in a folder

Installation:

pip install imageio-ffmpeg
pip install imageio

Code:

import os
import imageio

root = r'path_to_folder_with_images'

images = []    
for subdir, dirs, files in os.walk(root):
    for file in files:
        images.append(imageio.imread(os.path.join(root,file)))

savepath = r'path_to_save_folder'
imageio.mimsave(os.path.join(savepath,'movie.mp4'), images)