Group Abstract Group Abstract

Message Boards Message Boards

0
|
7.1K Views
|
3 Replies
|
1 Total Like
View groups...
Share
Share this post:

When the movie file is made from Animate....

Posted 11 years ago

Hello,

I want to make a animation movie 'swf' file using Animate as below. But I think that the video frame rate is fast. How can I control (or slow down) the frame rate ? And one more thing is that when the video is made, the movie goes forward and backward again. I want only forward direction. I have tried as many options of Animate as possible. Could you help me.......?

Ah, another stupid question is... when I use 'GIF' extension, it does not work with Animate. The created 'GIF' file is not animated. What is this reason...? Thank you in advance.

AAAMovie = Animate[GraphicsGrid[{{Plot[x^2 + q^2 x, {x, 0, 10}, ImageSize -> size], Plot[(x + q)^2 + 2 x, {x, 0, 10}, ImageSize -> size]}}], {q, 0, 5}, DefaultDuration -> 5, RefreshRate -> 10]

POSTED BY: hwoarang Polar
3 Replies
Posted 11 years ago
POSTED BY: hwoarang Polar

hi hwoarang,
I think this is the animated gif you are looking for:

Export["e:\\folder\\animatedgif.gif",
 Table[
  GraphicsGrid[{{Plot[x^2 + q^2 x, {x, 0, 10}, ImageSize -> size], 
     Plot[(x + q)^2 + 2 x, {x, 0, 10}, ImageSize -> size]}}
   ],
  {q, 5}],
 "DisplayDurations" -> 0.5,
 Background -> LightBlue]

DisplayDurations is 1 picture each 0.5 second. In total 5 pictures by using Table.

Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard