CompuServe Thread

#ADPro – PAR script

13 messages in this thread
#80813From: James R. OllickApr 30, 1994 8:09 PM
Is there a script (ARREX?)that will read a PAR animation in PAR format and convert it into an Amiga (IFF) animation ot sequential frames automaticaly? I can to it with ADPro 2.5 frame by frame, but this will take forever. I need to edit the animation frame by frame with the Brilliance animation and paint program. Jim R. Ollick Using AP from Bergenfield, NJ
#80839From: Ottmar RoehrigMay 1, 1994 3:18 AM
Why don't you just export the files with the PAR-software? Ottmar Roehrig from Hamburg, Germany
#80878From: James R. OllickMay 1, 1994 10:19 PM
Well… I could export the frames. 191 frames in 24 bit would be close to 191 Megs of hard disk needed if not more, compared to 10.6 megs for the PAR format animation. I would still need to convert them to 256 color images, one frame at a time, in ADPro. I thought that someone with arexx experience might have come up with a script that could automate the process. Jim R. Ollick Using AP from Bergenfield, NJ
#80886From: Anthony RamirezMay 1, 1994 11:57 PM
I have written a ARexx program that will do export a PAR anim, frame by frame, and use it with LW, then save the new frame to another PAR Anim. I had to do this since I have VERY limited system HD space (150 megs total) and I needed a way to do this on a frame by frame basis. It can easily be edited for use with other ARexx programs besides LW. This is a early version (simple) of a script that I am ul'ing that has File Requesters. <<<<< CUT HERE >>>>> /* By Anthony Ramirez C 1994 */ /* Use PAR anims as a image sequence for LightWave */ /* without using much HD space. Only needs space for */ /* one image on HD, about 700K. */ /* */ /* Replace `PARTest' with the name of the PAR Project. */ /* Replace `Dummy' with the PAR Anim being exported. */ /* Replace `Dummy2' with the PAR Anim being saved to. */ /* Replace `Test' with the LW scene being rendered. */ /* */ /* Can be modified for other programs like ADPRO, ect.. */ /* */ /* PAR and LightWave must be running for this script. */ /* */ /* This script is to be executed from the CLI. */ /* */ /* Fri Apr 22 21:35:51 1994 */ OPTIONS RESULTS Trace Results /* Loop that does the sequencial exporting from the PAR. */ Do x = 1 to 300 X = Right(X,3,0) /* Pads X value to 3 digits. */ Address "DDR" Path 'Work:Toaster/3D/Images/' Project PARTest File Dummy Jump X Export Dummy X /* Make sure this is what LW looks for as Image Sequence. */ /* This sets the PAR to record the next rendered image to a seperate PAR anim. This anim must already exist, at least 1 frame. */ File Dummy2 Append ON /* Tells LightWave what to render and where to save to. */ address 'LightWaveARexx.port' 'LoadScene Work:Toaster/3D/Scenes/Test' 'FirstFrame' x 'LastFrame' x 'SaveFrames DDR:PARTest/Test' 'Render 1' /* Closes the `Info window' on the PAR software */ address 'DDR' Done /* Deletes Exported image from HD. */ address command delete "Work:Toaster/3D/Images/Dummy." || X end x Exit <<< Tony D. Tracer >>> (Any render time >0 needs acceleration.)
#80929From: Stephen BaileyMay 2, 1994 2:56 PM
Tony, way cool! Stephen Bailey Sawyer & Bailey Film and Video CIS # 72773,2451
#81122From: Anthony RamirezMay 4, 1994 8:16 PM
>Tony, way cool! Thanks. I wish I could devote more time to playing with ARexx but I have my hands full helping to fix my parents house and trying to do some 3D stuff. <<< Tony D. Tracer >>> (Any render time >0 needs acceleration.)
#81148From: Stephen BaileyMay 4, 1994 11:25 PM
I wish I could find enough time to learn ARexx at all. It seems I get started, then I don't get back for awhile, and I have to start all over again. Oh yeah, I have to have a "/*" at the beginning of the script, or it won't run. <grin> 2 years and I'm still an Amiga novice. But I'm a Lightwave wiz! 🙂 Stephen Bailey Sawyer & Bailey Film and Video CIS # 72773,2451
#81284From: Anthony RamirezMay 6, 1994 1:47 PM
>2 years and I'm still an Amiga novice. But I'm a Lightwave wiz! 🙂 Don't `wiz' on LightWave!!! Don't `wiz' on a electric fence either! <<< Tony D. Tracer >>> (Any render time >0 needs acceleration.)
#81328From: Stephen BaileyMay 6, 1994 8:04 PM
yes, sir :< Stephen Bailey Sawyer & Bailey Film and Video CIS # 72773,2451
#80969From: James R. OllickMay 2, 1994 11:24 PM
Thanks, I'll look for your upload. I guess I should look into arexx. If I only had a way to cram 28 hours into a day… Jim R. Ollick Using AP from Bergenfield, NJ
#81240From: Anthony RamirezMay 5, 1994 10:17 PM
You only need 28 hours a day? I would need about 48 hours a day with all the stuff I am have to do. Unfortunately, 3D animation is only a small part of it. <<< Tony D. Tracer >>> (Any render time >0 needs acceleration.)
#81332From: James R. OllickMay 6, 1994 8:53 PM
>>You only need 28 hours a day? I would need about 48 hours a day with all >>the stuff I am have to do. Unfortunately, 3D animation is only a small >>part of it. Ok, but I wasn't counting the time I sleep. 🙂 Jim R. Ollick Using AP from Bergenfield, NJ
#81375From: Anthony RamirezMay 7, 1994 2:33 PM
>Ok, but I wasn't counting the time I sleep. 🙂 What is sleep? :^) <<< Tony D. Tracer >>> (Any render time >0 needs acceleration.)