Re: [Freevo-devel] Impossible to eject the CD

2003-12-11 Thread Matthieu Weber
On Thu 11.12.2003 at 09:40:42PM -0400, James Oakley wrote: > On December 11, 2003 06:41 am, Matthieu Weber wrote: > > I noticed that if you start freevo with a CD in the drive, it won't be > > able to eject the CD (and the CD is not mounted, I checked that too). > > The fuser command reports that /

[Freevo-devel] Re: plugin data

2003-12-11 Thread Aubin Paul
On Thu, Dec 11, 2003 at 01:09:47PM +0100, Dirk Meyer wrote: > So internal we have a list of key-value pairs. In Pythons way of > naming things, this is a dict. Even you use use a database, I will > call it dict from now on to have a name for it. Ok :) > So key is a string, value is something els

[Freevo-wikilog] [Freevo Wiki] Update of "MandrakeInstallation"

2003-12-11 Thread freevo-wikilog
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change notification. The following page has been changed by 64.81.143.42: http://freevo.sourceforge.net/cgi-bin/moin.cgi/MandrakeInstallation

Re: [Freevo-devel] New plugin for NetRemote to controll Freevo

2003-12-11 Thread Michael Ruelle
On Thu, 2003-12-11 at 20:36, Frank Aune wrote: > On Friday 12 December 2003 02:17, Michael Ruelle wrote: > > It really is very simple. just open a UDP socket and > > send the text of the button you want to send. > > So basically what I want to do is send eg. POWER, UP, DOWN in clear text over > a

Re: [Freevo-devel] New plugin for NetRemote to controll Freevo

2003-12-11 Thread Frank Aune
On Friday 12 December 2003 02:17, Michael Ruelle wrote: > It really is very simple. just open a UDP socket and > send the text of the button you want to send. So basically what I want to do is send eg. POWER, UP, DOWN in clear text over a socket? Is there a documentation which describes the diffe

Re: [Freevo-devel] Impossible to eject the CD

2003-12-11 Thread James Oakley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On December 11, 2003 06:41 am, Matthieu Weber wrote: > I noticed that if you start freevo with a CD in the drive, it won't be > able to eject the CD (and the CD is not mounted, I checked that too). > The fuser command reports that /dev/cdrom is used by

Re: [Freevo-devel] New plugin for NetRemote to controll Freevo

2003-12-11 Thread Michael Ruelle
look at src/helpers/remote.py It is the basic remote i wrote which works with freevo. It is python/TCL which i don't think you can get on a pocketpc but it should give you and idea of what to do. It really is very simple. just open a UDP socket and send the text of the button you want to send. you

[Freevo-devel] New plugin for NetRemote to controll Freevo

2003-12-11 Thread Frank Aune
Hello group, Ive just started looking into developing a plugin for the netremote program, which will allow me to controll Freevo. For more information about NetRemote, please see www.netremote.org Any help I can receive is greatly appreciated. What I want, is to use my Compaq iPaq with WLAN r

Re: [Freevo-devel] Re: Shutting down a plugin.DaemonPlugin

2003-12-11 Thread Viggo Fredriksen
It seems to be working now, with debugging I found that I had to set poll_counter = 0 after updating poll_interval. One thing remains. When player is detached and one selects a new song while already playing; what should I look for? The plugin doesn't get any events if this scenario occurs, and th

[Freevo-wikilog] [Freevo Wiki] Update of "FreevoRoadmap"

2003-12-11 Thread freevo-wikilog
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change notification. The following page has been changed by 134.102.218.42: http://freevo.sourceforge.net/cgi-bin/moin.cgi/FreevoRoadmap -

Re: [Freevo-devel] Re: Events and eventhandlers

2003-12-11 Thread Matthieu Weber
On Thu 11.12.2003 at 03:05:56PM +0100, Dirk Meyer wrote: > Matthieu Weber wrote: > > On Thu 11.12.2003 at 01:24:57PM +0100, Dirk Meyer wrote: > >> Does this help? > > > > Yes, thanks a lot. I didn't get that if the menu is active, it gets all > > the events, and if it is not active, it goes to... w

[Freevo-devel] Re: Events and eventhandlers

2003-12-11 Thread Dirk Meyer
Matthieu Weber wrote: > On Thu 11.12.2003 at 01:24:57PM +0100, Dirk Meyer wrote: >> Does this help? > > Yes, thanks a lot. I didn't get that if the menu is active, it gets all > the events, and if it is not active, it goes to... whom? the same object > as the one that posted the event? And how can

[Freevo-wikilog] [Freevo Wiki] Update of "FreevoRoadmap"

2003-12-11 Thread freevo-wikilog
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change notification. The following page has been changed by 80.188.67.53: http://freevo.sourceforge.net/cgi-bin/moin.cgi/FreevoRoadmap ---

Re: [Freevo-devel] Re: Events and eventhandlers

2003-12-11 Thread Matthieu Weber
On Thu 11.12.2003 at 01:24:57PM +0100, Dirk Meyer wrote: > Does this help? Yes, thanks a lot. I didn't get that if the menu is active, it gets all the events, and if it is not active, it goes to... whom? the same object as the one that posted the event? And how can I activate/deactivate the menu?

[Freevo-devel] Re: plugin data

2003-12-11 Thread Dirk Meyer
Aubin Paul wrote: > On Wed, Dec 10, 2003 at 05:52:51PM +0100, Dirk Meyer wrote: >> Agreed. But maybe we could store the mmpython data ourself and bypass >> the mmpython cache? > > What would be ideal is if we could override the mmpython cache > (inherit, whatever :) and then replace the write comma

[Freevo-devel] Re: Events and eventhandlers

2003-12-11 Thread Dirk Meyer
Matthieu Weber wrote: > I definitely need a lecture about event handling in Freevo (if someone > is kind enough to explain this to me). I will try. Each Item handles an event and/or sends it to it's parent. It's done by calling the Item.eventhandler() who checks 'if parent' and calls the parent e

[Freevo-devel] Re: Shutting down a plugin.DaemonPlugin

2003-12-11 Thread Dirk Meyer
Viggo Fredriksen wrote: > I've tried adjusting the poll_interval when I don't need it to draw. Eg. > setting it to 10 when drawing, 9 when not. It does however not > seem to change after the interval is set for the first time in the __init__. The poll() in the main loop looks like this: |

[Freevo-devel] Re: plugin data

2003-12-11 Thread Dirk Meyer
Aubin Paul wrote: > On Wed, Dec 10, 2003 at 05:52:51PM +0100, Dirk Meyer wrote: >> Agreed. But maybe we could store the mmpython data ourself and bypass >> the mmpython cache? > > What would be ideal is if we could override the mmpython cache > (inherit, whatever :) and then replace the write comma

[Freevo-devel] Impossible to eject the CD

2003-12-11 Thread Matthieu Weber
I noticed that if you start freevo with a CD in the drive, it won't be able to eject the CD (and the CD is not mounted, I checked that too). The fuser command reports that /dev/cdrom is used by one process (freevo), but all the os.open() that I have found in the Python code are followd by os.close(

[Freevo-devel] Re: [Freevo-cvslog] freevo/WIP/Dischi TODO,1.31,1.32

2003-12-11 Thread Dirk Meyer
Krister Lagerstrom wrote: > [EMAIL PROTECTED] wrote: >> + o remove the ChildAppThread stuff and make polling to avoid >> + threading problems > > Some applications like MPlayer will "stutter" if Freevo isn't reading > the tty output from it fast enough. This was one of the reasons for > using s

[Freevo-devel] Events and eventhandlers

2003-12-11 Thread Matthieu Weber
I definitely need a lecture about event handling in Freevo (if someone is kind enough to explain this to me). When playing movies (stored on the HDD, so no media-not-found problem involved here) from a FXD file, I have the following structure: DirItem (where from I start the playing) VideoItem_