|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Dear All,
Is there an up-to-date command line version of POV-Ray available,
(executable for MS Windows)?
The GUI seems to have the queue limited to 300 entries.
I do not want to call the GUI with the command line
parameters for thousands of frames.
Thanks,
Maciej
Post a reply to this message
|
|
| |
| |
|
|
From: Thorsten Froehlich
Subject: Re: up-to-date command line version
Date: 6 Oct 2003 06:12:03
Message: <3f813ff3@news.povray.org>
|
|
|
| |
| |
|
|
In article <3f8133bb$1@news.povray.org> , Maciej <wet### [at] pocztaonetpl>
wrote:
> Is there an up-to-date command line version of POV-Ray available,
> (executable for MS Windows)?
There is no such official version, only unofficial versions, but those are
not compiled with state-of-the-art compilers like the official Windows
version. But you can call the official Windows version via the command-line
just fine.
> The GUI seems to have the queue limited to 300 entries.
> I do not want to call the GUI with the command line
> parameters for thousands of frames.
If you are rendering an animation, what is preventing you from using "clock"
like everybody else does?
Thorsten
____________________________________________________
Thorsten Froehlich
e-mail: mac### [at] povrayorg
I am a member of the POV-Ray Team.
Visit POV-Ray on the web: http://mac.povray.org
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Mon, 06 Oct 2003 11:23:37 +0200, Maciej <wet### [at] pocztaonetpl> wrote:
> Dear All,
>
> Is there an up-to-date command line version of POV-Ray available,
> (executable for MS Windows)?
You can call GUI version from command line. In case you do not want splash
screen you can google for QuietPOV.
> The GUI seems to have the queue limited to 300 entries.
I do not remember such limitation but who knows...
> I do not want to call the GUI with the command line
> parameters for thousands of frames.
I do not understand above sentence. In 300 entries do you mean 300 frames of
one animation ? Then you can render it at once as 1 entry using animation
options.
If you see any language problems feel free to ask in Polish in
povray.international using [pl] at subject begining.
Regards, ABX
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
>>Is there an up-to-date command line version of POV-Ray available,
>>(executable for MS Windows)?
>
> There is no such official version, only unofficial versions, but those are
> not compiled with state-of-the-art compilers like the official Windows
> version.
Where can I get unofficial versions? :-)
>>The GUI seems to have the queue limited to 300 entries.
>>I do not want to call the GUI with the command line
>>parameters for thousands of frames.
>
> If you are rendering an animation, what is preventing you from using "clock"
> like everybody else does?
AFAIK "clock" is just a variable with subsequent values...
In my case, every frame is quite different and produced
by an external program.
Maciej
ps. I'd call GUI if it only had a switch "do not start GUI" :-)
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Mon, 06 Oct 2003 12:39:10 +0200, Maciej <wet### [at] pocztaonetpl> wrote:
> Where can I get unofficial versions? :-)
For example: http://megapov.inetart.net/
> AFAIK "clock" is just a variable with subsequent values...
> In my case, every frame is quite different and produced
> by an external program.
You can use one file to boundle all 300 frames into one:
//begin file
#include concat("frame",str(frame_number,0,0),".inc")
//end file
> ps. I'd call GUI if it only had a switch "do not start GUI" :-)
Look into manual for details about your wishes, there is platform dedicated
chapter number one.
ABX
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
>>The GUI seems to have the queue limited to 300 entries.
>
> I do not remember such limitation but who knows...
I just checked:
1. Windows limits selecting multiple files in the
"Open" system dialog
2. POV-Ray limits the queue to 512 entries.
Maciej
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> If you are rendering an animation, what is preventing you from using
"clock"
> like everybody else does?
Not everybody uses clock!
--
Rick
Kitty5 NewMedia http://Kitty5.com
POV-Ray News & Resources http://Povray.co.uk
TEL : +44 (01270) 501101 - ICQ : 15776037
PGP Public Key
http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x231E1CEA
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> You can use one file to boundle all 300 frames into one:
>
> //begin file
> #include concat("frame",str(frame_number,0,0),".inc")
> //end file
Yes, that is true, this IS a workaround and it is
different from calling a command-line program
that everybody is used to do :-)
Thanks,
Maciej
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
ABX <abx### [at] abxartpl> wrote in
news:8bh2ov4k550nqbn4eu2jsvibl9vcl7m3cj@4ax.com:
>
>> ps. I'd call GUI if it only had a switch "do not start GUI" :-)
>
> Look into manual for details about your wishes, there is platform
> dedicated chapter number one.
>
> ABX
AFAICT, that is not documented or possible.
--
Tom
_________________________________
The Internet Movie Project
http://www.imp.org/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Mon, 06 Oct 2003 12:45:31 +0200, Maciej <wet### [at] pocztaonetpl> wrote:
> 2. POV-Ray limits the queue to 512 entries.
Indeed, I see it,
#define MAX_QUEUE 512
in pvguiext.h.
So you can recompile it for your needs with highier MAX_QUEUE setting.
ABX
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |