I had the same problem, I found this in the recordserver logfile.
2007-11-16 22:05:45,322 DEBUG    ivtv_record.py (127): Setting Input to
tuner
2007-11-16 22:05:45,322 ERROR    v4l2.py (404): setinputbyname failed:
'tuner'
2007-11-16 22:05:45,331 INFO     v4l2.py (405): possible are: ['composite
2', 'tuner 1', 'composite 1', 's-video 1', 's-video 2']

This is what I had as my VIDEO_GROUP
VideoGroup(vdev='/dev/video0',
               adev=None,
               input_type='tuner',
               input_num=0,
               tuner_norm='NTSC',
               tuner_chanlist='us-cable',
               desc='Tuner 1',
               group_type='ivtv',
               record_group=0)

The "input_type" has to match something in log file output (line 405 in
v4l1.py above). I changed the "input_type" from "tuner" to "tuner 1" and it
started working again. Like below:
VideoGroup(vdev='/dev/video0',
               adev=None,
               input_type='tuner 1',
               input_num=0,
               tuner_norm='NTSC',
               tuner_chanlist='us-cable',
               desc='Tuner 1',
               group_type='ivtv',
               record_group=0)

On Nov 16, 2007 9:19 PM, Richard van Paasen <[EMAIL PROTECTED]> wrote:

> Hi Duncan,
>
> I have two issues with the 1.7.4 release.
>
> 1. Did debugging settings change? I have defined "DEBUG=1", but no debug
> info
> is written to stdout/logfile. What should I do to enable the debugging
> info in
> ivtv_xine_tv.py ?
>
> 2. It seems that the video group handling changed. I now get log entries
> saying:
>
> setinputbyname failed: 'tuner'
> Cannot set input 'tuner' for '/dev/video0', must be one of:
> ['tuner 1', 'composite 2', 'composite 3', 'composite 1', 's-video 1',
> 's-video 2']
>
> My video groups setup is:
>
> TV_VIDEO_GROUPS = [
>        VideoGroup(
>                vdev='/dev/video0',
>                adev=None,
>                input_type='tuner',
>                input_num=0,
>                tuner_norm='pal',
>                tuner_chanlist='europe-west',
>                desc='Regular Cable',
>                group_type='ivtv',
>                record_group = None
>        ),
>        VideoGroup(
>                vdev='/dev/video0',
>                adev=None,
>                input_type='svideo',
>                input_num=1,
>                tuner_type='external',
>                desc='S-Video Input',
>                group_type='ivtv',
>                record_group = None
>        ),
>        VideoGroup(
>                vdev='/dev/video0',
>                adev=None,
>                input_type='composite',
>                input_num=5,
>                tuner_type='external',
>                desc='Composite Input',
>                group_type='ivtv',
>                record_group = None
>        ),
> ]
>
> Is this setup not correct?
>
> Cheers,
> Richard.
>
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to