Lines Matching refs:frames
15 """Script to take a set of frames (PNG files) for a recovery animation
16 and turn it into a single output image which contains the input frames
17 interlaced by row. Run with the names of all the input frames on the
28 frames = [Image.open(fn).convert("RGB") for fn in sys.argv[1:-1]]
29 assert len(frames) > 0, "Must have at least one input frame."
31 for fr in frames:
36 N = len(frames)
41 for fn, f in enumerate(frames):
45 # chunk that specifies how many frames this animation represents. If
51 meta.add_text("Frames", str(N))