Re: [Freevo-devel] Asking for ... package version info

2008-09-12 Thread Juan Pablo Soto Barrera
Jason, thanks for your kind reply. I am afraid you are right, there is no standard way of getting package version info within Python code before importing. I will use an "ad-hoc" procedure using the statement hasattr(), however this procedure has to be applied after importing (i.e. after initia

Re: [Freevo-devel] TV_CHANNEL settings

2008-09-12 Thread John Molohan
Evan Hisey wrote: > Before I reinvent the wheel, is there a good way to pull the > TV_CHANNEL information out of the TV.XML for use in the > local_config.py? If not as the format has changed from what the wiki > has listed. > > Evan > I think that's what setting TV_CHANNELS = [ ] is supposed to

Re: [Freevo-devel] Plugin RTVE. Small improvement

2008-09-12 Thread José María Franco Fraiz
Nice to see someone uses my plugin. :-) Thanks 2008/9/10 Juan Pablo Soto Barrera <[EMAIL PROTECTED]> > José María and Freevo's friends, > attached you can find a little patch to add RTVE videos from the Archive > http://www.rtve.es/alacarta/archivo/index.html > > The patched files (rtve.py and r

Re: [Freevo-devel] Playing video subitems in the same player instance

2008-09-12 Thread Duncan Webb
Gorka Olaizola wrote: > Hello, > > I'm trying to remove the waiting time between two parts when playing a > video cut in multiple files and played joined with the config.AUTOJOIN > feature or a .fxd file. > > I've made a patch that appends the subitems to the same call to mplayer > or xine. In mp

Re: [Freevo-devel] TV_CHANNEL settings

2008-09-12 Thread Evan Hisey
On Fri, Sep 12, 2008 at 2:55 AM, John Molohan <[EMAIL PROTECTED]> wrote: > Evan Hisey wrote: >> Before I reinvent the wheel, is there a good way to pull the >> TV_CHANNEL information out of the TV.XML for use in the >> local_config.py? If not as the format has changed from what the wiki >> has list

Re: [Freevo-devel] Asking for ... package version info

2008-09-12 Thread Dirk Meyer
Jason Tackaberry wrote: import kaa.metadata print kaa.metadata.version.VERSION > 0.7.4 > > dischi: this is a bit lame. I think we talked about this before. Can't > we have kaa.metadata.version be the version object? I do not remember talking about this :) > Does require having the au

Re: [Freevo-devel] Asking for ... package version info

2008-09-12 Thread Dirk Meyer
Juan Pablo Soto Barrera wrote: > I am afraid you are right, there is no standard way of getting > package version info within Python code before importing. Python 2.5 is using these strange egg files, maybe they can help? Dischi -- It's not Area 51 I'm worried about- it's Areas 1 through 50.

Re: [Freevo-devel] Asking for ... package version info

2008-09-12 Thread Jason Tackaberry
On Fri, 2008-09-12 at 17:02 +0200, Dirk Meyer wrote: > If Duncan doesn't use it right now, we can change it. But why rename > VERSION to version? It is a const value. Maybe start with 'from > version import VERSION'. True. kaa.metadata.VERSION would be fine. ---

Re: [Freevo-devel] Asking for ... package version info

2008-09-12 Thread Duncan Webb
Dirk Meyer wrote: > Jason Tackaberry wrote: > import kaa.metadata > print kaa.metadata.version.VERSION >> 0.7.4 >> >> dischi: this is a bit lame. I think we talked about this before. Can't >> we have kaa.metadata.version be the version object? > > I do not remember talking about this :)