1

As we know, Python Turtle can save its Turtle Screen to a picture of ".eps" format. But is it possible to create a whole movie using pictures of this type? If not, is it possible to create movie on Python other way without downloading any extra software? Thanks.

mathfux
  • 5,759
  • 1
  • 14
  • 34

1 Answers1

1

Yes, this can be done in a couple ways.

If you absolutely must have a real movie format (like mpeg), you'll have to use pymedia. Here's an example script which saves a pygame image to a movie sequence.

If instead you can accept a .gif sequence, PIL can read eps file format images (among many others), and can make .gif's using a handy script explained in an unaccepted SO answer by kostmo.

Community
  • 1
  • 1
VooDooNOFX
  • 4,674
  • 2
  • 23
  • 22