home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 131.lha / makeanim.doc < prev    next >
Text File  |  1986-11-21  |  2KB  |  50 lines

  1.  
  2.     Hi.
  3.  
  4.     Here's an ANIM standard compressor, which can take a series of IFF
  5.     files and combine them into a single animation file that can be
  6.     played back with ShowANIM, as well as the Director and Aegis
  7.     VideoSeg.  To create a compressed ANIM file, construct a text
  8.     file with a list of file names of frames to be assembled, one
  9.     per line:
  10.  
  11.     pictures/frame01
  12.     pictures/frame02
  13.     pictures/frame03
  14.     pictures/frame04
  15.     pictures/frame05
  16.     pictures/frame01
  17.     pictures/frame02
  18.  
  19.     Files can reside on different disks, just enter the entire path 
  20.     name (including disk name).  A requester will pop up when it's time
  21.     to put in the appropriate disk.
  22.  
  23.     If you want to create an endless loop, make sure the first two
  24.     frames are repeated at the end of the file as in the example above.
  25.  
  26.     Once the list file is created (let's call it FLIST) you then
  27.     issue the command:
  28.  
  29.     MakeANIM FLIST test.anim
  30.  
  31.     This will read the frames in one by one and create the ANIM file
  32.     with the name "test.anim".  This file can then be played back with
  33.     the abovementioned player programs.
  34.  
  35.     The program should work in any resolution including HAM, but don't
  36.     try to mix resolutions.  The color palettes should all be the same,
  37.     as this version does not handle palette changing on the fly.
  38.  
  39.     This program has been successfully used to construct standard format
  40.     ANIM files from Animate3D frames, as well as individual files created
  41.     by paint programs.
  42.  
  43.     How much memory do you need?  Good question.  The program will
  44.     create 4 buffers the size of the IFF image during compression.
  45.     Only one buffer is required to be in CHIP memory.  Lo-res shouldn't
  46.     be any trouble for anybody, but I don't know exactly where the dividing
  47.     lines are otherwise.
  48.  
  49.  
  50.