1936
|
1
|
|
2 Some words about Siemens-DVB card support. by A'rpi
|
|
3 ==========================================
|
|
4
|
1937
|
5 NOTE: this is very experimental!
|
|
6
|
1936
|
7 Requirements:
|
|
8 ~~~~~~~~~~~~~
|
|
9 - Siemens DVB-S card or compatible (technotrend,galaxis,hauppage etc)
|
|
10 see www.linuxtv.org for details and download latest driver there.
|
|
11 - MPlayer-CVS, ffmpeg-libavcodec. divx4linux is recommended for speed & pp.
|
|
12 - Fast CPU - at least for software decoding (divx...)
|
|
13
|
|
14
|
1960
|
15 How to enable?
|
|
16 ~~~~~~~~~~~~~~
|
1936
|
17 1. Edit libvo/vo_mpegpes.c, and change first #undef HAVE_DVB to:
|
|
18 #define HAVE_DVB
|
1960
|
19
|
1936
|
20 2. Download ffmpeg-CVS and copy libavcodec to mplayer (see DOC for details)
|
1960
|
21 Move this line from #ifdef CONFIG_ENCODERS .. #endif section to outside
|
|
22 (after the #endif line) at libavcodec/utils.c:361 :
|
1936
|
23 register_avcodec(&mpeg1video_encoder);
|
|
24
|
2109
|
25 3. Compile mplayer:
|
|
26 run ./configure with the option:
|
|
27 --with-extraincdir=<your DVB source dir>/ost/include
|
|
28 make
|
|
29 make install
|
1936
|
30
|
1960
|
31 How to use?
|
|
32 ~~~~~~~~~~~
|
1936
|
33 To play standard mpeg 1/2 files: (hardware decoding)
|
|
34
|
|
35 mplayer -vo mpegpes -vc mpegpes file.mpg|vob
|
|
36
|
|
37 To play non-standard mpeg files: (software decoding)
|
|
38
|
|
39 mplayer -vo mpegpes file.mpg|vob
|
|
40
|
|
41 To play divx files:
|
|
42
|
|
43 mplayer -vo mpegpes -vc ffdivx|odivx file.avi|asf
|
|
44
|
1960
|
45 To play non-25fps movies, or with slow CPU, add option: -framedrop
|
1936
|
46
|
1960
|
47 Image size:
|
|
48 ~~~~~~~~~~~
|
|
49 DVB card allows only 2 vertical resolutions: 288 and 576.
|
|
50 If your video height differs, you have to clip it or extend by adding
|
|
51 black bands. It's done by mplayer, just specify image size using the
|
|
52 -x and -y options. You must use either -y 288 or -y 576.
|
|
53
|
1963
|
54 To force pan&scan (16:9 at 4:3 TV), add options: -x 352 -y 288
|
1936
|
55
|
|
56 Mailing list:
|
|
57 ~~~~~~~~~~~~~
|
|
58 http://mplayerhq.hu/mailman/listinfo/mplayer-dvb
|
1960
|
59
|
|
60 Subscribe, and ask/discuss your problems here.
|
|
61 I'll also post feature announces to this list.
|
1936
|
62
|
|
63 Future plans/TODO:
|
|
64 ~~~~~~~~~~~~~~~~~~
|
|
65
|
|
66 - audio playback through the DVB card (currently it uses soundcard)
|
|
67 - display OSD and subtitles using DVB card's OSD feature
|
|
68 - better (more fluent) playback of non-25fps movies
|
|
69 - more speed optimizations
|
|
70 - YUY2 support (for win32 codecs, like Indeo5 and WMV 7/8)
|
|
71 - realtime transcoding between mpeg2 <-> mpeg4 (partial decompression)
|
|
72
|