Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+9 votes

My vidoe is really fast and I would want to slow it down

asked in CSC 150 January201920 by (1 point)
0

I was having the same problem and the speed slider at the top of the screen wasn't helping.

2 Answers

+3 votes
 
Best answer

In the netlogo interface tab, select settings and slow down the frame rate.

answered by (1 point)
selected by
0

Thank you!

+1

I'm afraid that won't affect the frame rate of the video that's created using the vid extension -- that just affects how quickly NetLogo displays things when you have the speed-slider in the middle position.

+3 votes

To slow it down, you can either:

a) change your commands to make the turtles move slower, etc., or...
b) record repeated repeated/duplicate frames.

Choice a is probably harder, but has the possibility of making the video smoother as well as faster.

Choice b is quite easy! Everywhere in your code where you wrote

  vid:record-view

change it to

  repeat 10 [ vid:record-view ]

The exported video should now be 10 times slower, since it will now show the same repeated image for 10 whole frames each time...

answered by (508 points)
+2

P.S. if you've already created the video, and want to edit it, take a look at my answer to this other question here: http://lovelace.augustana.edu/q2a/index.php/2553/how-can-we-make-a-video-faster

...