Ok looks like i zotzed something that was important to those of you who
do not use tvtime with 'freevo -fs'. It is back in now. Attached is the
patch so you guys can fix your 1.4 files.
0n Wed, 2003-11-26 at 14:15, Matt Goeden wrote:
> I also have the same problem. A couple of you mentioned that you simply
> switched focus to be able to send commands into tvtime?! How do you go
> about doing this? I am running X w/o any window managers.
>
> Thanks,
> Matt
>
> >From: Peter Svensson <[EMAIL PROTECTED]>
> >Reply-To: [EMAIL PROTECTED]
> >To: "'[EMAIL PROTECTED]'"
> ><[EMAIL PROTECTED]>
> >Subject: SV: [Freevo-users] tvtime: slave mode remote control problem
> >Date: Wed, 26 Nov 2003 12:33:25 +0100
> >
> >I have had a (similiar problem). Whenever I try to use tvtime (which IMHO
> >looks better than mplayer), it doesn't respond to any commands, remote or
> >keyboard. I can't shut it down, return to freevo or anything. So th
> > only thing to do is to forcibly shut down X (ctrl-alt-backspace) and run
> >startx again.
> >
> >Truly weird. I remember that it worked at some stage in the 1.4 process,
> >but
> >it might as well (probably is :) my fault.
> >
> >/PS
> >
> >-----Ursprungligt meddelande-----
> >FrÃn: John Molohan [mailto:[EMAIL PROTECTED]
> >Skickat: den 26 november 2003 11:06
> >Till: [EMAIL PROTECTED]
> >Ãmne: RE: [Freevo-users] tvtime: slave mode remote control problem
> >
> >
> >
> >
> > > -----Original Message-----
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On Behalf
> > > Of Robert Rozman
> > > Sent: 26 November 2003 09:36
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: [Freevo-users] tvtime: slave mode remote control problem
> > >
> > > Hi,
> > >
> > > thanks for response. I assume it should work "out of the
> > > box". But the problem in my case is that I cannot exit tvtime
> > > (Esc won't work). Is this normal ? Do I have to do anything
> > > else to get exit working ?
> > >
> > > Regards,
> > >
> > > Robert.
> >
> >I noticed that as well, I had to switch a back focus to the main freevo
> >window then ESC would close tvtime. Seems like something is wrong here.
> >Haven't tested it with a remote yet but I imagine it's the same which is a
> >bit of a problem.
> >
> > >
> > > ----- Original Message -----
> > > From: "Michael Ruelle" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Wednesday, November 26, 2003 2:14 AM
> > > Subject: Re: [Freevo-users] tvtime: slave mode remote control problem
> > >
> > >
> > > > use the freevo key bindings.
> > > >
> > > > c and v for ch+ and ch-
> > > >
> > > > you can also use 0-9 to change channels
> > > >
> > > > you can also use prev_chan (if you have a remote button set
> > > to it) to
> > > > switch to prev_chan when doing manual tuning.
> > > >
> > > > Mike
> > > >
> > >
> > >
> > >
> > > -------------------------------------------------------
> > > This SF.net email is sponsored by: SF.net Giveback Program.
> > > Does SourceForge.net help you be more productive? Does it
> > > help you create better code? SHARE THE LOVE, and help us help
> > > YOU! Click Here: http://sourceforge.net/donate/
> > > _______________________________________________
> > > Freevo-users mailing list
> > > [EMAIL PROTECTED]
> > > https://lists.sourceforge.net/lists/listinfo/freevo-users
> > >
> >
> >
> >
> >-------------------------------------------------------
> >This SF.net email is sponsored by: SF.net Giveback Program.
> >Does SourceForge.net help you be more productive? Does it
> >help you create better code? SHARE THE LOVE, and help us help
> >YOU! Click Here: http://sourceforge.net/donate/
> >_______________________________________________
> >Freevo-users mailing list
> >[EMAIL PROTECTED]
> >https://lists.sourceforge.net/lists/listinfo/freevo-users
> >
> >
> >-------------------------------------------------------
> >This SF.net email is sponsored by: SF.net Giveback Program.
> >Does SourceForge.net help you be more productive? Does it
> >help you create better code? SHARE THE LOVE, and help us help
> >YOU! Click Here: http://sourceforge.net/donate/
> >_______________________________________________
> >Freevo-users mailing list
> >[EMAIL PROTECTED]
> >https://lists.sourceforge.net/lists/listinfo/freevo-users
>
> _________________________________________________________________
> online games and music with a high-speed Internet connection! Prices start
> at less than $1 a day average. https://broadband.msn.com (Prices may vary
> by service area.)
>
>
>
> -------------------------------------------------------
> This SF.net email is sponsored by: SF.net Giveback Program.
> Does SourceForge.net help you be more productive? Does it
> help you create better code? SHARE THE LOVE, and help us help
> YOU! Click Here: http://sourceforge.net/donate/
> _______________________________________________
> Freevo-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/freevo-users
--
Mike Ruelle
[EMAIL PROTECTED]
http://world.std.com/~mruelle/
Index: tvtime.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/tvtime.py,v
retrieving revision 1.22
diff -r1.22 tvtime.py
593a594,630
> # XXX Needed because tvtime grabs focus unless used with freevo -fs
> events = { 'n' : em.MIXER_VOLDOWN,
> 'm' : em.MIXER_VOLUP,
> 'c' : em.TV_CHANNEL_UP,
> 'v' : em.TV_CHANNEL_DOWN,
> 'Escape' : em.STOP,
> 'd' : em.TOGGLE_OSD,
> '_' : em.Event(em.BUTTON, arg='PREV_CHAN'),
> '0' : em.Event(em.BUTTON, arg='0'),
> '1' : em.Event(em.BUTTON, arg='1'),
> '2' : em.Event(em.BUTTON, arg='2'),
> '3' : em.Event(em.BUTTON, arg='3'),
> '4' : em.Event(em.BUTTON, arg='4'),
> '5' : em.Event(em.BUTTON, arg='5'),
> '6' : em.Event(em.BUTTON, arg='6'),
> '7' : em.Event(em.BUTTON, arg='7'),
> '8' : em.Event(em.BUTTON, arg='8'),
> '9' : em.Event(em.BUTTON, arg='9'),
> 'F3' : em.MIXER_MUTE,
> 's' : em.STOP }
>
> if DEBUG: print 'TVTIME 1 KEY EVENT: "%s"' % str(list(line))
> if line == 'F10':
> if DEBUG: print 'TVTIME screenshot!'
> self.write('screenshot\n')
> elif line == 'z':
> if DEBUG: print 'TVTIME fullscreen toggle!'
> self.write('toggle_fullscreen\n')
> osd.toggle_fullscreen()
> else:
> event = events.get(line, None)
> if event is not None:
> rc.post_event(event)
> if DEBUG: print 'posted translated tvtime event "%s"' % event
> else:
> if DEBUG: print 'tvtime cmd "%s" not found!' % line
>