POV-Ray : Newsgroups : povray.unix : Batch rendering. : Re: Batch rendering. Server Time
26 Jun 2024 02:35:03 EDT (-0400)
  Re: Batch rendering.  
From: Vaclav Cermak
Date: 15 Nov 2005 06:27:38
Message: <4379c62a@news.povray.org>
I'am using standart make, Makefile may look like this:

all: persp01.ppm persp02.ppm persp03.ppm

Resolution = +w1950 +h1380

POV_Dir = /usr/local/POV

POV = povray

Include = +l$(POV_Dir)/3.5/include

POV_Flags_share = $(Include) +fp +v $(Resolution) +mb2 +wl0 +gdebug.log

POV_Flags = $(POV_Flags_share) -a +d +p +sp8
POV_Flags = $(POV_Flags_share) +a +d +p
#POV_Flags = $(POV_Flags_share) +a

Includes = scene.inc

%.ppm: %.pov $(Includes)
   $(POV) $(POV_Flags) +i$< +o$@ +gsstat.$@

clean:
   rm -f *.ppm *.ppm.stat *~
 



Greg M. Johnson wrote:
> One cooler features of the windoze app was the queue-- you could render a
> big slew of files at once.  I think for the moment I'm going to be using
> the command version from apt-get, and that's one thing i miss.  
> 
> Any tips on approximating that feature?


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.