to:[EMAIL PROTECTED] Behalf Of Aubin Paul
Sent: Wednesday, March 26, 2003 9:42 PM
To: [EMAIL PROTECTED]
Subject: Re: [Freevo-users] record_daemon.py probs
Based on the line above it:
log(' Starting item (%s)' % cmd)
The log file (freevo_record.log) should contain the command being
call
Based on the line above it:
log(' Starting item (%s)' % cmd)
The log file (freevo_record.log) should contain the command being
called.
You could also check for the return value (os.system() returns the
error code)
i.e.
return = os.system(cmd)
log('%s' % return)
where the
os.system(cmd)
wa
This is driving me crazy.
How can I debug the python system call "os.system(cmd)" on line 174 of the
record_daemon.py?
I can't see that the operation is ever fired; it runs the rewrite and builds
the command just dandy, but no starting of the mencoder command.
Help python people, please.
Backgr