Re: Starting an external, independent process from a script

2007-03-14 Thread skam
I use ffmpeg instead of mencoder, calling it using os.popen(). You can
also use the "commands" module, but I prefer the first one.

Bye,
Massimo

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: data design

2007-01-31 Thread skam
On Jan 30, 8:06 pm, "Paddy" <[EMAIL PROTECTED]> wrote:
>
> Google for YAML and JSON formats too
>

YAML and JSON are good when used as data-interchange format, not as
configuration files.
These formats are too complex for non-programmers, so they will ask
aid for every editing ;)

I suggest ini-like files, parsed using ConfigParser, but you should
have a look to ConfigObj that has got automatic type conversion and
other interesting features

-- 
http://mail.python.org/mailman/listinfo/python-list