comparison DOCS/DVB @ 1960:4c75134e70a5

extended...
author arpi
date Tue, 25 Sep 2001 19:58:11 +0000
parents 91fd2c70404b
children 951fa355422c
comparison
equal deleted inserted replaced
1959:51432c9e0692 1960:4c75134e70a5
10 see www.linuxtv.org for details and download latest driver there. 10 see www.linuxtv.org for details and download latest driver there.
11 - MPlayer-CVS, ffmpeg-libavcodec. divx4linux is recommended for speed & pp. 11 - MPlayer-CVS, ffmpeg-libavcodec. divx4linux is recommended for speed & pp.
12 - Fast CPU - at least for software decoding (divx...) 12 - Fast CPU - at least for software decoding (divx...)
13 13
14 14
15 How to enable/use? 15 How to enable?
16 ~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~
17 1. Edit libvo/vo_mpegpes.c, and change first #undef HAVE_DVB to: 17 1. Edit libvo/vo_mpegpes.c, and change first #undef HAVE_DVB to:
18 #define HAVE_DVB 18 #define HAVE_DVB
19
19 2. Download ffmpeg-CVS and copy libavcodec to mplayer (see DOC for details) 20 2. Download ffmpeg-CVS and copy libavcodec to mplayer (see DOC for details)
20 Move this line out of CONFIG_ENCODERS section at libavcodec/utils.c:361 : 21 Move this line from #ifdef CONFIG_ENCODERS .. #endif section to outside
22 (after the #endif line) at libavcodec/utils.c:361 :
21 register_avcodec(&mpeg1video_encoder); 23 register_avcodec(&mpeg1video_encoder);
22 24
23 3. Compile mplayer 25 3. Compile mplayer
24 26
27 How to use?
28 ~~~~~~~~~~~
25 To play standard mpeg 1/2 files: (hardware decoding) 29 To play standard mpeg 1/2 files: (hardware decoding)
26 30
27 mplayer -vo mpegpes -vc mpegpes file.mpg|vob 31 mplayer -vo mpegpes -vc mpegpes file.mpg|vob
28 32
29 To play non-standard mpeg files: (software decoding) 33 To play non-standard mpeg files: (software decoding)
32 36
33 To play divx files: 37 To play divx files:
34 38
35 mplayer -vo mpegpes -vc ffdivx|odivx file.avi|asf 39 mplayer -vo mpegpes -vc ffdivx|odivx file.avi|asf
36 40
41 To play non-25fps movies, or with slow CPU, add option: -framedrop
42
43 Image size:
44 ~~~~~~~~~~~
45 DVB card allows only 2 vertical resolutions: 288 and 576.
46 If your video height differs, you have to clip it or extend by adding
47 black bands. It's done by mplayer, just specify image size using the
48 -x and -y options. You must use either -y 288 or -y 576.
49
37 To force letterbox size (16:9 at 4:3 TV), add options: -x 352 -y 288 50 To force letterbox size (16:9 at 4:3 TV), add options: -x 352 -y 288
38
39 To play non-25fps movies, or with slow CPU, add option: -framedrop
40 51
41 52
42 Mailing list: 53 Mailing list:
43 ~~~~~~~~~~~~~ 54 ~~~~~~~~~~~~~
44 http://mplayerhq.hu/mailman/listinfo/mplayer-dvb 55 http://mplayerhq.hu/mailman/listinfo/mplayer-dvb
45 56
57 Subscribe, and ask/discuss your problems here.
58 I'll also post feature announces to this list.
46 59
47 Future plans/TODO: 60 Future plans/TODO:
48 ~~~~~~~~~~~~~~~~~~ 61 ~~~~~~~~~~~~~~~~~~
49 62
50 - audio playback through the DVB card (currently it uses soundcard) 63 - audio playback through the DVB card (currently it uses soundcard)