[mythtv-users] Record to "MPEG-2 SVCD-compatible Stream" with Hauppauge PVR USB2

Nick Morrott knowledgejunkie at gmail.com
Tue Jul 15 20:17:05 UTC 2008


2008/7/11 Carsten Meier <cm at internalscripts.de>:
> Hello,
>
> I want to record to an SVCD-ready stream with my Hauppauge PVR USB2. I
> think the device is capable of doing so because a
> 'cat /sys/class/pvrusb2/sn-9009731/ctl_stream_type/enum_val' gives me
> the following results:
>
> MPEG-2 Program Stream
> MPEG-1 System Stream
> MPEG-2 DVD-compatible Stream
> MPEG-1 VCD-compatible Stream
> MPEG-2 SVCD-compatible Stream

These are specified in the v4l2_mpeg_stream_type enumeration in
mythtv/libs/libmythtv/videodev2_myth.h, so MythTV is certainly aware
of them, even if they are not enabled:

/*  MPEG streams */
#define V4L2_CID_MPEG_STREAM_TYPE               (V4L2_CID_MPEG_BASE+0)
enum v4l2_mpeg_stream_type {
    V4L2_MPEG_STREAM_TYPE_MPEG2_PS   = 0, /* MPEG-2 program stream */
    V4L2_MPEG_STREAM_TYPE_MPEG2_TS   = 1, /* MPEG-2 transport stream */
    V4L2_MPEG_STREAM_TYPE_MPEG1_SS   = 2, /* MPEG-1 system stream */
    V4L2_MPEG_STREAM_TYPE_MPEG2_DVD  = 3, /* MPEG-2 DVD-compatible stream */
    V4L2_MPEG_STREAM_TYPE_MPEG1_VCD  = 4, /* MPEG-1 VCD-compatible stream */
    V4L2_MPEG_STREAM_TYPE_MPEG2_SVCD = 5, /* MPEG-2 SVCD-compatible stream */
};


-- 
Nick Morrott

MythTV Official wiki:
http://mythtv.org/wiki/
MythTV users list archive:
http://www.gossamer-threads.com/lists/mythtv/users

"An investment in knowledge always pays the best interest." - Benjamin Franklin


More information about the mythtv-users mailing list