Hi friends,

after the enthusiastic comments (esp. by Evan Hisey), I also updated from 
1.7.1svn to current rel-1-7 and the latest kaa svn.   The recordserver 
required me updating twisted and twisted-web, but now I have some grave 
problems with TV:

- Anyways, there are two other major problems (which might as well be 
responsible for the above):
* the guide is empty (no program data for any channel)
* I get "no scheduled recordings"
* similarly, "no favorites"
* watching TV gives a blank screen only

/var/cache/freevo/record_schedule.xml is not small and at least still contains 
the favorites (since it is completely unformatted and I do not know a good 
XML formatter, it is hard to check though).

Ah, the commandline for watching TV (using tv.ivtv_xine_tv) is
> /usr/bin/xine --auto-play=fq --hide-gui --borderless --geometry
> 1024x768+0+0 --no-splash --no-lirc --post=pp:quality=10;expand -V None -A
> None --stdctl pvr:///home/user/Timeshift/buf"
-- now "-V None -A None" looks suspicious!

I already did convert_config, but something changed.  Since I did never 
configure XINE_TV_AO_DEV, I would assume that it defaults to XINE_AO_DEV, no?  
The code suggests that, but it uses hasattr(), while freevo_conf.py now 
contains ... = None.  That does not work together.  Attached is a possible 
fix.

Now I have TV, but it shows great flickering, and the guide, scheduled 
recordings, and favorites are still empty. :-(

-- 
Ciao, /  /                                                    .o.
     /--/                                                     ..o
    /  / ANS                                                  ooo
Index: src/tv/plugins/ivtv_xine_tv.py
===================================================================
--- src/tv/plugins/ivtv_xine_tv.py	(Revision 10156)
+++ src/tv/plugins/ivtv_xine_tv.py	(Arbeitskopie)
@@ -92,11 +92,11 @@
     config.XINE_ARGS_DEF = ""
     _debug_("XINE_ARGS_DEF is not configured!", DWARNING)
 
-if not hasattr(config, 'XINE_TV_VO_DEV'):
+if not hasattr(config, 'XINE_TV_VO_DEV') or config.XINE_TV_VO_DEV is None:
     config.XINE_TV_VO_DEV = config.XINE_VO_DEV
     _debug_("XINE_TV_VO_DEV set to config.XINE_VO_DEV", DWARNING)
 
-if not hasattr(config, 'XINE_TV_AO_DEV'):
+if not hasattr(config, 'XINE_TV_AO_DEV') or config.XINE_TV_AO_DEV is None:
     config.XINE_TV_AO_DEV = config.XINE_AO_DEV
     _debug_("XINE_TV_AO_DEV set to config.XINE_AO_DEV", DWARNING)
 

Attachment: signature.asc
Description: This is a digitally signed message part.

-------------------------------------------------------------------------
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-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to