Skip to content

Instantly share code, notes, and snippets.

@endolith
endolith / image_movie.py
Last active July 1, 2021 16:57
Display a folder of images very quickly
from tkinter import Tk, Label
from PIL import Image, ImageTk
import os
import sys
# Skip every n frames. Use 1 to show all images
skip = 1
try:
root = Tk()