1;; Persistence Of Vision Raytracer version 3.8 sample INI file.
2;; ZIPFLC.INI
3;;
4;; Assuming Input_File=myfile.pov
5;;  this INI creates a myfile.zip to hold all output files
6;;  and then creates myfile.flc from it.
7;;
8;; Requires pkzip.exe to zip/unzip
9;; Requires dta.exe to create flc
10;; Requires exists.exe which is included in POV-Ray distribution.
11;; If exists.exe is not available, comment out both Pre_Scene_... lines.
12;;
13
14Output_to_File=On
15Pre_Scene_Command=exists %s.flc     ;;If myfile.flc already exists
16Pre_Scene_Return=-q                 ;;  skip entire scene
17Pre_Frame_Command=pkzip -vb %s %o   ;;Test if myfile.tga in myfile.zip
18Pre_Frame_Return=-s                 ;;  if no error, skip this frame
19Post_Frame_Command=pkzip -mu %s %o  ;;Move myfile.tga to myfile.zip
20                                    ;;  This removes tga from disk
21Post_Frame_Return=f                 ;;If error, crash
22;;
23;; There is an unsolved problem when running dta directly.
24;; Preliminary results show that calling it via command.com fixes
25;; the problem but as yet, we don't know why.
26;;
27Post_Scene_Command=command /C dta /o%s.flc /R%w,%h %s.zip  ;;make myfile.flc
28Post_Scene_Return=f                 ;;If error, crash
29Pause_When_Done=Off
30Continue_Trace=On                ;;Lets you resume
31Test_Abort=On                    ;;Lets you interrupt
32