With the attached patch, the TVGuide is as fast (or as slow ;-)) as it
has been before at my freevo system (Pentium3-750MHz).
Let me know, what you think.
Regards
Tanja
Tanja schrieb:
Yes, I also noticed that now. On my testing system everything works
fine, but on our real freevo system, which has a slower CPU, navigation
in the TVGuide is very slow. I will investigate that...
Regards
Tanja
naudefj schrieb:
Same problem here. The TV guide seems to be very slow and CPU intensive.
Especially when moving around (arrow keys).
Best regards.
Frank
On Friday 02 February 2007 23:09, Justin Wetherell wrote:
I just downloaded 9131 and the TVGuide works correctly (I can schedule and
record via menu interface) but it uses 100% of the CPU whenever you try and
do anything (button clicks, etc). The rest of the Freevo interface (movies,
recorded TV, etc) is fine CPU wise.
On 2/2/07, Pascal Schirrmann <[EMAIL PROTECTED]> wrote:
John Molohan a écrit :
Hi,
After an update to rel-1 svn 9129 when I try to watch tv now with the
PLAY command freevo tells me that I'm recording (which I'm not) and if
I'm not to remove /var/cache/freevo/record.video0. That file doesn't
exist (as mentioned I'm not recording anything) so for now tv seems
broke. There's no debugging output to report.
Hi,
Same problem here. No solution so far.
Thanks,
--
Pascal Schirrmann
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users
Index: freevo/src/tv/tvguide.py
===================================================================
--- freevo/src/tv/tvguide.py (Revision 9153)
+++ freevo/src/tv/tvguide.py (Arbeitskopie)
@@ -266,7 +266,7 @@
# this enables multiple (max 3) digit channel selection
if (self.lastinput_value >= 100):
self.lastinput_value = (self.lastinput_value % 100)
- newinput_value = self.lastinput_value * 10 + newinput_value
+ newinput_value += self.lastinput_value * 10
self.lastinput_value = newinput_value
self.lastinput_time = newinput_time
@@ -312,17 +312,17 @@
if not self.menuw.children:
rc.set_context(self.event_context)
self.menuw.refresh()
- self.update()
+ self.update(force=True)
- def update(self):
+ def update(self, force=False):
""" update the tv guide
This function updates the scheduled and overlap flags for
all currently displayed programs.
"""
_debug_('Update',2)
- self.update_schedules(force=True)
+ self.update_schedules(force)
if self.table:
for t in self.table:
try:
@@ -353,6 +353,7 @@
This is neccessary we change the set of programs that have to be
displayed, this is the case when the user moves around in the menu.
"""
+ _debug_('Reload',2)
self.guide = epg_xmltv.get_guide()
channels = self.guide.GetPrograms(start=start_time+1, stop=stop_time-1)
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users