Claudio wrote:
how can I keep the channels separate? Should I first insert the channels
for the dvb-t card and then the other? Or should I use two TV_CHANNELS
entry?

Start with two video groups:

VIDEO_GROUPS = [
    VideoGroup(vdev='/dev/dvb/adapter0/dvr0',
               adev=None,
               tuner_norm='PAL',
               tuner_chanlist='',
               desc='DVB-S',
               group_type='dvb',
               recordable=True),
    VideoGroup(vdev='/dev/dvb/adapter1/dvr0',
               adev=None,
               tuner_norm='PAL',
               tuner_chanlist='',
               desc='DVB-T',
               group_type='dvb',
               recordable=True),
]

Ok, I admit I have no idea what settings to put in there for DVB...

Anyhow, your TV_CHANNELS would look something like:

TV_CHANNELS = [
    ('C01.dvb-s.id', 'CHAN1', '1'),
    ('C02.dvb-s.id', 'CHAN2', '2'),
    ('C03.dvb-s.id', 'CHAN3', '3'),
    ('C02.dvb-t.id', 'CHAN2-2', '4', '', 1),
    ('C03.dvb-t.id', 'CHAN3-2', '5', '', 1),
    ('C04.dvb-t.id', 'CHAN4', '6', '', 1),
]

Ok, so this setup is crazy complicated and that's why is has all been changed for Freevo 2.0.

Here you see that dvb-s channel 1 is unique to dvb-s while channels 2 and 3 are common between dvb-s and dvb-t and channel 4 is unique to dvb-t. The reason you see ", '', 1" in the dvb-t channels is that the default video group is the first one (and it indexes at 0) so it can be left out of the dvb-s channels in this case. In the Freevo channel list you will see every channel in this list as a unique channel.

This is definately not the best way to support multiple tuners and this was just a work in progress in Freevo 1.5 when we decided to go into another direction for 2.0 and overhauled it.

HTH,
-Rob


--
-------------------------------------------------------
Rob Shortt        | http://tvcentric.com | Freevo
[EMAIL PROTECTED] | http://freevo.sf.net | Free your TV


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to