Steven wrote:
The problem arises when I try to watch or record TV,The reason for this is as you state a config problem. I used xawtv fequencies for configuring freevo.
which is kinda central to the project. I have an old
analog Haupaugge WinTV card (circa '98), which I have
bttv compiled into my Gentoo 2.6.10 kernel for. I've
tested it in xawtv and tvtime and works fine (and
tunes). I decided to use tvtime in freevo (using
plugin activate), but when it brings up tv it's always
got channel 0 selected. This isn't a great suprise, ps
-ax whilst it's running shows that freevo has passed
it '-c 0'
yours:
[5] channel = 37 capture = on
[BBC2] channel = 40 capture = on
[ITV] channel = 43 capture = on
[south.bbc1.bbc.co.uk] channel = 46 capture = on
[channel4.com] channel = 50 capture = on
which you must use in the following section of your local_conf.py file:
All channels listed here will be displayed on the TVThe TV_CHANNELS var above contain the channels in freevo, first is xmltv id, then a short name for display in osd/web and lastly the xawtv channel number. Here you'll notice you've used 0 for most channels which explains why tvtime always starts with -c 0 :) thus your TV_CHANNELS var should be:
menu, even if they're
# not present in the XMLTV listing.
#
#
# Timedependent channels:
#
# The TV_CHANNELS-list can look like this:
#
# TV_CHANNELS = [('21', 'SVT1', 'E5'),
# ('22', 'SVT2', 'E3'),
# ('26', 'TV3', 'E10'),
# ('27', 'TV4', 'E6'),
# ('10', 'Kanal 5', 'E7'),
# ('60', 'Fox Kids', 'E8',
('1234567','0600','1659')),
# ('16', 'TV6', 'E8',
('1234567','1700','2359'),
# ('1234567','0000','0300')),
# ('14', 'MTV Europe', 'E11') ]
#
# As you can see the list takes optional tuples:
# ( 'DAYS', 'START','END')
#
# 1234567 in days means all days.
# 12345 would mean monday to friday.
#
# It will display "Fox Kids" from 06:00 to 16:59 and
"TV6" from 17:00 to 03:00.
# 03:00 to 06:00 it won't be displayed at all.
#
TV_CHANNELS = [('south.bbc1.bbc.co.uk', 'BBC1', '46'),
('south.bbc2.bbc.co.uk', 'BBC2', '0'),
('itv1.itv.co.uk', 'ITV 1', '0'),
('channel4.com', 'Channel 4', '0'),
('five.co.uk', 'Five', '0') ]
TV_CHANNELS = [('south.bbc1.bbc.co.uk', 'BBC1', '46'),
('south.bbc2.bbc.co.uk', 'BBC2', '40'),
('itv1.itv.co.uk', 'ITV 1', '43'),
('channel4.com', 'Channel 4', '50'),
('five.co.uk', 'Five', '37') ]hope this help.
- Jesper
------------------------------------------------------- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
