GEORGE: execute system command/program
Posted: 21 Feb 2018, 14:02
Hello TVPaint-Developers!
for our current production I would like to have a GEORGE-command that can execute a python-script externally. This would give me the option
to dynamically request data(through an intermediate/temporary textfile) for processing an export-batch of certain TVPaint-layers.
Some VFX-programs provide this ability with their scriptinglanguage..
for example:
"Flash" has something like:
"ToonBoom" has something like:
Latter is nice because, appareantly has the option to wait for the process to finish.
Could this feature be implemented soon please
Very much thanks in advance from a big TVPaint-fan!
Kaspar
for our current production I would like to have a GEORGE-command that can execute a python-script externally. This would give me the option
to dynamically request data(through an intermediate/temporary textfile) for processing an export-batch of certain TVPaint-layers.
Some VFX-programs provide this ability with their scriptinglanguage..
for example:
"Flash" has something like:
Code: Select all
FLfile.runCommandLine('python generate_datafile_from_productiondatabase.py ep010_sc010_sho020 tempfile_ab55fcd565.txt')
Code: Select all
var cmd = "python generate_datafile_from_productiondatabase.py ep010_sc010_sho020 tempfile_ab55fcd565.txt"
var proc = new Process2(cmd);
proc.launch();
while (proc.isAlive()) {
// wait a second. etc...
}
Could this feature be implemented soon please
Very much thanks in advance from a big TVPaint-fan!
Kaspar