> Frank [Antispam account] wrote: >> Hello, >> >> Just upgraded to the latest svn-version of Freevo. Works >> great but I thing 'bugged'. >> When I enter a DVD with a video_ts directory, I can play the >> DVD anymore. >> >From Watch-Movies, I see a entry "MOVIE TITLE HERE". Normally >> when I press enter, The DVD would play with Xine, but now it >> goes a level deeper and gives me the Separate files on that >> DVD. Even pressing enter there doesn't work, because it Gives >> me a "No action defined". >> >> > > I can confirm this behavior on a fresh install of freevo from svn, > revision 9881 on an Ubuntu Feisty OS. There is no indication in the log > that xine is even getting started when using the remote ENTER button on > the dvd item in the Movie menu, so I'm sure it is some configuration > item missing, or I am missing a library. I have CHILDAPP_DEBUG = 9 and > DEBUG = 9. no xine logs get created in /var/log/freevo. xine works > from the command line if I do 'xine dvd://'. Poking around now in the > source to see if I can add some debug, but pointers on where to look > would be nice.
With the svn version you will need to add: LOGGING = logging.DEBUG Using CHILDAPP_DEBUG = 9 does no more that CHILDAPP_DEBUG=1 Generally logging levels > 1 provide too much information that you will not be able to see the wood for the trees :) Sensible debug settings are: # # Debugging and logging settings # # logging can be one of: # CRITICAL, ERROR, WARNING, INFO, DEBUG or NOTSET # LOGGING = logging.DEBUG RECORDSERVER_LOGGING = logging.DEBUG DEBUG = 1 # messages go to stdout # DEBUG_STDOUT = 0 # messages from starting a child application CHILDAPP_DEBUG = 1 # timing messages # TIME_DEBUG = 0 Duncan ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
