|
|
Re: ListAnimate
Posted:
Oct 19, 2010 5:56 AM
|
|
On Oct 18, 6:55 pm, Andre Hautot <ahau...@ulg.ac.be> wrote: > Hello, > > ListAnimate[ > Table[Graphics[Disk[], ImageSize -> RandomReal[100]], {10}], > DefaultDuration -> 10, AnimationRepetitions -> 1] > > is an example from the documentation about ListAnimate. The option > DefaultDuration has been added to slow down the animation and it works > under Mathematica. > > However if one exports the sequence as an avi file : > > Export["randomcircles.avi", > ListAnimate[ > Table[Graphics[Disk[], ImageSize -> RandomReal[100]], {10}], > DefaultDuration -> 10, AnimationRepetitions -> 1]] > > the video is played by BSplayer at high speed ignoring the option > > Any explanation ? > > Andre Hautot
Please use this
ListAnimate[ Table[Graphics[Disk[], ImageSize -> RandomReal[100]], {10}], DefaultDuration -> 10, AnimationRepetitions -> 1];
Export["randomcircles.avi", %, "ControlAppearance" -> None, "AnimationDuration" -> 10];
|
|