MathGroup Archive 2010

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: ListAnimate

  • To: mathgroup at smc.vnet.net
  • Subject: [mg113218] Re: ListAnimate
  • From: nilaakash <brindaban at gmail.com>
  • Date: Tue, 19 Oct 2010 05:55:34 -0400 (EDT)
  • References: <i9h5ht$173$1@smc.vnet.net>

On Oct 18, 6:55 pm, Andre Hautot <ahau... at 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];


  • Prev by Date: Re: working with lists
  • Next by Date: Re: Help with Spline Interpolation
  • Previous by thread: ListAnimate
  • Next by thread: Re: ListAnimate