Would somebody be able to tell me the full syntax of the TV_CHANNELS variable for freevo 1.5.3?

I tried this with freevo 2 but couldn't figure out the correct syntax, any pointers?

I need to set up TV_CHANNELS and FREQUENCY_TABLE because the Swiss frequencies don't completely fit to the predefined frequencies.

I did a patch for MPlayer that added the frequencies there: http://www.linuxowl.com/patches/mplayer-frequencies-ch.patch

I've figured out that it should be something like this:
TV_CHANNELS = [
               ('bbc.co.uk', 'BBC Prime', 'K32'),
('kinderkanal.de', 'KiKa', 'K21', ('1234567','0600','2059')), ('arte.de', 'Arte', 'K21', (('1234567','2100','2359'), ('1234567','0000','0559'))),
               ('C1.sfdrs.ch', 'SF 1', 'K05'),
              ...
               ('webcam1', 'WebCam', '0', '', '1'),
             ]

FREQUENCY_TABLE = {
   'K32' : 559250,
   'K21' : 471250,
   'K05' : 175500,
   ...
}

AUDIO_DEVICE = ':alsa:adevice=hw.0,0'
VIDEO_GROUPS = [
   VideoGroup(vdev='/dev/video0',
              adev=AUDIO_DEVICE,
              input_type='tuner',
              input_num=4,
              tuner_norm=CONF.tv,
              tuner_chanlist=CONF.chanlist,
              desc='PVR-350 Video Group',
              group_type='ivtv',
              recordable=True),
   VideoGroup(vdev='/dev/video1',
              adev=AUDIO_DEVICE,
              input_type='Television',
              input_num=0,
              tuner_norm=CONF.tv,
              tuner_chanlist=CONF.chanlist,
              desc='RaveTV Video Group',
              group_type='bttv',
              recordable=True),
   VideoGroup(vdev='/dev/webcam0',
              adev='/dev/dsp1',
              desc='Logitech Quickcam',
              group_type='webcam',
              recordable=True),
]

TIA
Duncan




-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to