On 30/01/2009 03:28, Michael Brown said the following:
> Hi Duncan!
>
>
>
> ----- Original Message ----
> From: Duncan Webb
> Subject: Re: [Freevo-users] VHS Rips under Freevo
>
>> The other thing would be a live preview. I've tried using VLC and
>> pvr://, but it pulls up the tuner instead. I have X available on that
>> box; any ideas how I can preview the composite input to adjust tracking?
>
> "It should be possible to use a TV channel to do this, last time I tested
> this it worked.
>
> TV_CHANNELS = [
> ('webcam', u'WebCam', '-3',
> ('S-Video', u'S-Video', '-1',
> ('CNI04C1', u'SF1', 'K05'),
> ]"
>
> OK, question on this. I'm using XMLTV to fetch from Schedules direct to feed
> the PVR-150 cards. I've never set TV_CHANNELS in local_conf.py, as it's
> always worked "automagically". I'd rather not break anything, and would
> rather not have to create several dozen TV channels in local_conf.py; is it
> possible to have it add the additional "channels" on top of the automagically
> created channels? ie
>
> TV_CHANNELS = [
> (TV_CHANNELS),
> ('webcam', u'WebCam', '-3'),
> ('S-Video', u'S-Video', '-1'),
> ]
May be:
TV_CHANNELS.append(('webcam', u'WebCam', '-3'))
TV_CHANNELS.append(('S-Video', u'S-Video', '-1'))
or
TV_CHANNELS += [
('webcam', u'WebCam', '-3'),
('S-Video', u'S-Video', '-1'),
]
This depends if TV_CHANNELS has already been defined, to be honest as I
have to define my TV channels I'm not sure about this.
Duncan
------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users