Page 1 of 1

How to start animation rendering with indigo_console?

Posted: Wed Apr 21, 2010 4:29 am
by Jambert
- is it possible to start animation rendering in console mode? I thaught it was the fastest way to render!?

I didn't find anything in manual so?

thx in advance

Re: How to start animation rendering with indigo_console?

Posted: Wed Apr 21, 2010 10:13 am
by Jambert
Maybe someone could help me with a little script. I begin with linux, I don't know how to do it but I just need to render mulitple igs in the same folder, one by one.

thx

Re: How to start animation rendering with indigo_console?

Posted: Wed Apr 21, 2010 8:03 pm
by dakiru
Hi, Jambert!

As far as I know, you have to create a file and name it something like render.sh
And write inside it:

Code: Select all

#!/bin/bash
./indigo_console ./frame_001.igs &&
./indigo_console ./frame_002.igs &&
./indigo_console ./frame_003.igs
then you will run it by this command:

Code: Select all

bash ./render.sh
or you can make render.sh file executable by running this command:

Code: Select all

chmod 700 render.sh
and then run it by this command:

Code: Select all

./render.sh
I am on a Windows machine now, so not able to test.

Re: How to start animation rendering with indigo_console?

Posted: Wed Apr 21, 2010 11:44 pm
by Jambert
Thx for your help, I did find another way to do it without editing manualy .sh

Code: Select all

cd ~/forlder_with_file
ls *.igs | xargs -I{}  ~/indigo/indigo_console {} -n wm
usefull to remplace simple render queue :D

Re: How to start animation rendering with indigo_console?

Posted: Thu Apr 22, 2010 12:03 am
by dakiru
Jambert wrote:Thx for your help, I did find another way to do it without editing manualy .sh

Code: Select all

cd ~/forlder_with_file
ls *.igs | xargs -I{}  ~/indigo/indigo_console {} -n wm
usefull to remplace simple render queue :D
Hey, that's a lot better way :) Great you've found that out.