Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

A minimal sufficient code is here:

...

Wiki Markuppath = "/Users/balewski/Desktop/outMovie/frame.png";
imgL = {};
For[i = 1, i < 95, i++, (* buil list of images *)
name = StringInsert\[path, ToString\[i], -5];
img = Import\[name];
imgL = Append\[imgL, img]
];
M4 = ListAnimate\[imgL] (* build in-memeory animation *)
Export\["/Users/balewski/Desktop/jasM4b.avi", M4, "avi"] (* export animation *)

...

It is very slow, the last line - doing the 3 sec long movie - took an hour+.

...