Re: Mathematica generating gifs for avi problem
- To: mathgroup at smc.vnet.net
- Subject: [mg29753] Re: [mg29713] Mathematica generating gifs for avi problem
- From: Dale Horton <daleh at wolfram.com>
- Date: Sat, 7 Jul 2001 02:25:58 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
At 02:08 AM 7/4/2001, axc at poincare.EECS.cwru.edu wrote: >i'm trying to generate an avi movie for powerpoint. since Mathematica for >windows doesn't support this directly, i'm exporting individual .gifs >with Mathematica's Export[], then using shareware to convert to avi. > >problem is, i have 1000's of frames and it's taking a long time to >render each one. shouldn't it be possible to direct Mathematica not to render >and rather to save these plots? i'm using Export[,"GIF"] and i tried >DisplayFunction->Identity but doesn't work. any runarounds? > >alan calvitti >axc at eecs.cwru.edu DisplayFunction->Identity should work fine. In[1]:= Export["test.gif", Plot[x,{x,0,1}, DisplayFunction->Identity]] Out[1]= test.gif -Dale