Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a video from NetLogo

Is there a way to create a video from NetLogo?

I have had a look at the quicktime extension, however, this seams to only allow you to import videos, not create them.

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

Thanks

like image 523
Chris Headleand Avatar asked May 30 '14 11:05

Chris Headleand


Video Answer


1 Answers

This is documented at http://ccl.northwestern.edu/netlogo/docs/programming.html#movies

See also https://github.com/NetLogo/NetLogo/issues/165 which just about everyone runs into, and https://github.com/NetLogo/NetLogo/issues/499 which you may run into on Mac OS X.

An alternative approach is to use export-view and export-interface to save a bunch of PNG files, and then assemble them into a movie afterwards using other software.

like image 156
Seth Tisue Avatar answered Sep 30 '22 11:09

Seth Tisue