Dear Wiki user, You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change notification.
The following page has been changed by 66.167.187.2: http://freevo.sourceforge.net/cgi-bin/moin.cgi/DocumentationPage ------------------------------------------------------------------------------ @@ -75,6 +75,8 @@ * Also check the mplayer section to specify the audio device and special paramter for mplayer. * Check path for mencoder in VCR command + +=== Recording Scheduler === If you will be recording, you will need to a single cron job. This cronjob should call '<path>/freevo execute src/tv/record_daemon.py' as often as you want. Most people run this every minute of every hour, but some run only every five. That's your call-- will you miss a record command on every five? Sample cron entry: {{{ @@ -84,6 +86,17 @@ #*/5 * * * * /usr/local/freevo/freevo execute src/tv/record_daemon.py }}} +{{{ + NOTE: + Many people have library path errors with the record_daemon.py. You should log the output of your cronjob or watch the local mail for this account carefully for the first few days and make sure it is working. + The error is something like: + sh: /lib/ld-linux.so.2: version `GLIBC_PRIVATE' not found (required by ./runtime/dll/libc.so.6) + + The fix is to edit freevo/src/tv/record_daemon.py and add the second line as seen below: + import os + os.environ['LD_PRELOAD'] = '' # Add this line to stop GLIBC_2.X preload errors + +}}} === TV setup === ------------------------------------------------------- This SF.Net email sponsored by: Parasoft Error proof Web apps, automate testing & more. Download & eval WebKing and get a free book. www.parasoft.com/bulletproofapps1 _______________________________________________ Freevo-wikilog mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-wikilog
