On Thursday 05 August 2004 15:39, Dirk Meyer wrote:
> CHANNEL_LIST = [
>      ('vox.de', 'VOX', ['dvb:VOX', 'tv0:1234', 'tv1:1234'])
> ]

Looks fine; however, if a user buys a second TV card of the same type, he/she 
might like a facility to say "tv1 can do the same as tv0". That could be a 
simple python two-liner which adds all entries to the CHANNEL_LIST that are 
then needed.

Ideally, something like

CHANNEL_LIST = [
     ('vox.de', 'VOX', '1234')
]
DEFAULT_CHANNEL_METHOD = ['tv0', 'tv1']

would suffice. At least something like

CHANNEL_LIST = [
     ('vox.de', 'VOX', 'tv0:1234')
]
CHANNEL_METHOD_ALTERNATIVES = {'tv0': 'tv1'}

should be possible to save the user from a *lot* of typing (or from knowing 
his Emacs well ;-) ).

> You have the channel VOX. If you want to play it, Freevo will ask
> every plugin about dvb.

This question should actually be about "dvb:VOX" or "dvb:band" (sorry if I'm 
using the wrong terminology, only analog equipment around..) so that a plugin 
might say: OK, the device is busy, but can record a second channel from the 
same source" (/foo/bar/whatever, being ignorant ;-) ).

The whole thing makes sense to me, although my impression is that a 
Freevo-setup utility (a separate app) might to the trick as well, since this 
is mostly about complex config file structures, not really about complex 
program interna.

-- 
Ciao, /  /                                                    .o.
     /--/                                                     ..o
    /  / ANS                                                  ooo


-------------------------------------------------------
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
_______________________________________________
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to