ListAnimate
- To: mathgroup at smc.vnet.net
- Subject: [mg113199] ListAnimate
- From: Andre Hautot <ahautot at ulg.ac.be>
- Date: Mon, 18 Oct 2010 05:47:58 -0400 (EDT)
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