(self)
| 507 | self._frames.append(im.convert("RGB")) |
| 508 | |
| 509 | def finish(self): |
| 510 | self._frames[0].save( |
| 511 | self.outfile, save_all=True, append_images=self._frames[1:], |
| 512 | duration=int(1000 / self.fps), loop=0) |
| 513 | |
| 514 | |
| 515 | # Base class of ffmpeg information. Has the config keys and the common set |