Re: Starting an external, independent process from a script
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
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