Re: [Freevo-users] Unable to adjust volume

2005-02-12 Thread HaJo Schatz
On Sat, 2005-02-12 at 22:48 -0800, Jon Morris wrote: > I am unable to adjust the volume while watching a recorded show. Looking at > the help screen from within freevo, it looks like the 'n' and 'm' keys should > increase and decrease the volume. However 'm' mutes. I have also tried > using a

[Freevo-users] Unable to adjust volume

2005-02-12 Thread Jon Morris
I am unable to adjust the volume while watching a recorded show. Looking at the help screen from within freevo, it looks like the 'n' and 'm' keys should increase and decrease the volume. However 'm' mutes. I have also tried using aumix to lower the volume settings, but this doesn't change th

Re: [Freevo-users] Freevo + fullscreen on FBdev

2005-02-12 Thread HaJo Schatz
On Sat, 2005-02-12 at 23:29 +0800, Ow Mun Heng wrote: > How can I enable fullscreen of freevo or mplayer/xine while running in > fbdev? > > I can get fullscreen just using xine -Vfb or mplayer > > But I can't get it to fullscreen when freevo is started. You have configured /etc/freevo/freevo.conf

[Freevo-users] Re: ATI Remote and Keybindings

2005-02-12 Thread RPBrown
Anyone have any clues? > The remote works, up and down and 'ok' works (the default settings), > but every other binding isnt working, have I missed something with my > configuration? > > mediabawx:/etc/freevo# cat local_conf.py | grep EVENT > # EVENTS['video']['1'] = Event(VIDEO_SEND_MPLAYER_CMD,

Re: [Freevo-users] Help writing plugin.

2005-02-12 Thread mplayer
you just need to create a new menu object, and call the pushmenu function - when the pushmenu function is called, you will enter that menu. eg, if you do menuw.pushmenu(ha_menu) menuw.pushmenu(ha_menu) menuw.pushmenu(ha_menu) then you will go down 3 levels of menus (admitted the _same_ menu), and

Re: [Freevo-users] Help writing plugin.

2005-02-12 Thread mplayer
you are returning the function result rather than the function itself. try encapsulating it in a lamda. Rande Another problem I'm having is that the following code: ha_menu_items+=[menu.MenuItem(control[0],os.system(control[1]))] executes the "os,system(control[1])" when the menu loads, not

Re: [Freevo-users] Help writing plugin.

2005-02-12 Thread Ryan Roth
Another problem I'm having is that the following code: ha_menu_items+=[menu.MenuItem(control[0],os.system(control[1]))] executes the "os,system(control[1])" when the menu loads, not when the menu is selected, what did I do wrong? --- SF email i

[Freevo-users] Freevo + fullscreen on FBdev

2005-02-12 Thread Ow Mun Heng
Question: How can I enable fullscreen of freevo or mplayer/xine while running in fbdev? I can get fullscreen just using xine -Vfb or mplayer But I can't get it to fullscreen when freevo is started. This is EPIA M10K on Gentoo -- Ow Mun Heng Gentoo/Linux on DELL D600 1.4Ghz 98% Microsoft(tm) F

Re: [Freevo-users] Help writing plugin.

2005-02-12 Thread Ryan Roth
The problem I having is that I do not know how to create sub-menus off the rooms. How do you add a sub menu? --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover

Re: [Freevo-users] Help writing plugin.

2005-02-12 Thread mplayer
My first idea is that MenuItem needs to return a function that builds a new Item. You might need to create a blank Item class (no functions) and then dynamically create those functions using the lamda operator. That's the most extensible.  Or you could just have 3 Item subclasses, which would be l