Create a video with NetLogo

Is there a way to create a video from NetLogo?

I looked at the QuickTime extension, however these seams allow you to import videos, rather than create them.

What I want to do is save a video about what is happening in the environment. I have a model with many turtles around, I want to save this video, so I can use it in a presentation. Is this possible (other than just screen capture)?

thanks

+6
source share
1 answer

This is described in http://ccl.northwestern.edu/netlogo/docs/programming.html#movies

See also https://github.com/NetLogo/NetLogo/issues/165 , which almost everyone has come across, and https://github.com/NetLogo/NetLogo/issues/499 , which you may encounter on Mac OS X.

An alternative approach is to use export-view and export-interface to save a bunch of PNG files, and then put them together in a movie after using other software.

+5
source

Source: https://habr.com/ru/post/970080/


All Articles