Mercurial > mplayer.hg
annotate DOCS/xml/en/video.xml @ 32199:339e4bb9c262
Remove outdated warning about obsolete gcc 2.96.
author | diego |
---|---|
date | Fri, 17 Sep 2010 09:43:41 +0000 |
parents | d2a29f5447df |
children | dd5ba6bfe79d |
rev | line source |
---|---|
20535 | 1 <?xml version="1.0" encoding="utf-8"?> |
10913
49b1a67e7381
Add revision keyword to english xml files, to ease translation synchronization
lumag
parents:
10869
diff
changeset
|
2 <!-- $Revision$ --> |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
3 <chapter id="video"> |
9675 | 4 <title>Video output devices</title> |
5 | |
22836 | 6 <sect1 id="xv"> |
9675 | 7 <title>Xv</title> |
8 | |
9 <para> | |
10 Under XFree86 4.0.2 or newer, you can use your card's hardware YUV routines | |
11359 | 11 using the XVideo extension. This is what the option |
20863 | 12 <option>-vo xv</option> uses. Also, this driver supports adjusting |
13 brightness/contrast/hue/etc. (unless you use the old, slow DirectShow DivX | |
9675 | 14 codec, which supports it everywhere), see the man page. |
15 </para> | |
16 | |
17 <para> | |
18 In order to make this work, be sure to check the following: | |
19 | |
20 <orderedlist> | |
21 <listitem><para> | |
22 You have to use XFree86 4.0.2 or newer (former versions don't have XVideo) | |
20862 | 23 </para></listitem> |
9675 | 24 <listitem><para> |
25 Your card actually supports hardware acceleration (modern cards do) | |
20862 | 26 </para></listitem> |
9675 | 27 <listitem><para> |
28 X loads the XVideo extension, it's something like this: | |
29 <programlisting>(II) Loading extension XVideo</programlisting> | |
30 in <filename>/var/log/XFree86.0.log</filename> | |
31 <note><para> | |
32 This loads only the XFree86's extension. In a good install, this is | |
21521 | 33 always loaded, and doesn't mean that the |
34 <emphasis role="bold">card's</emphasis> XVideo support is loaded! | |
9675 | 35 </para></note> |
20862 | 36 </para></listitem> |
9675 | 37 <listitem><para> |
38 Your card has Xv support under Linux. To check, try | |
39 <command>xvinfo</command>, it is the part of the XFree86 distribution. It | |
40 should display a long text, similar to this: | |
41 <screen> | |
42 X-Video Extension version 2.2 | |
43 screen #0 | |
44 Adaptor #0: "Savage Streams Engine" | |
45 number of ports: 1 | |
46 port base: 43 | |
47 operations supported: PutImage | |
48 supported visuals: | |
49 depth 16, visualID 0x22 | |
50 depth 16, visualID 0x23 | |
51 number of attributes: 5 | |
52 (...) | |
53 Number of image formats: 7 | |
54 id: 0x32595559 (YUY2) | |
55 guid: 59555932-0000-0010-8000-00aa00389b71 | |
56 bits per pixel: 16 | |
57 number of planes: 1 | |
58 type: YUV (packed) | |
59 id: 0x32315659 (YV12) | |
60 guid: 59563132-0000-0010-8000-00aa00389b71 | |
61 bits per pixel: 12 | |
62 number of planes: 3 | |
63 type: YUV (planar) | |
64 (...etc...)<!-- | |
65 --></screen> | |
66 It must support YUY2 packed, and YV12 planar pixel formats to be usable | |
67 with <application>MPlayer</application>. | |
20862 | 68 </para></listitem> |
9675 | 69 <listitem><para> |
70 And finally, check if <application>MPlayer</application> was compiled | |
11738 | 71 with 'xv' support. Do a <command>mplayer -vo help | grep xv </command>. |
11520
dd17c00dff68
Commands should be in <command> tags, better wording.
diego
parents:
11504
diff
changeset
|
72 If 'xv' support was built a line similar to this should appear: |
21521 | 73 <screen> xv X11/Xv</screen> |
20862 | 74 </para></listitem> |
9675 | 75 </orderedlist> |
76 </para> | |
22836 | 77 </sect1> |
9675 | 78 |
79 <!-- ********** --> | |
80 | |
22836 | 81 <sect1 id="dga"> |
9675 | 82 <title>DGA</title> |
83 | |
84 <formalpara> | |
85 <title>PREAMBLE</title> | |
86 <para> | |
87 This document tries to explain in some words what DGA is in general and | |
88 what the DGA video output driver for <application>MPlayer</application> | |
89 can do (and what it can't). | |
90 </para> | |
91 </formalpara> | |
92 | |
93 <formalpara> | |
94 <title>WHAT IS DGA</title> | |
95 <para> | |
96 <acronym>DGA</acronym> is short for <emphasis>Direct Graphics | |
97 Access</emphasis> and is a means for a program to bypass the X server and | |
14318 | 98 directly modifying the framebuffer memory. Technically spoken this happens |
9675 | 99 by mapping the framebuffer memory into the memory range of your process. |
100 This is allowed by the kernel only if you have superuser privileges. You | |
101 can get these either by logging in as <systemitem | |
102 class="username">root</systemitem> or by setting the SUID bit on the | |
103 <application>MPlayer</application> executable (<emphasis role="bold">not | |
104 recommended</emphasis>). | |
105 </para> | |
106 </formalpara> | |
107 <para> | |
108 There are two versions of DGA: DGA1 is used by XFree 3.x.x and DGA2 was | |
109 introduced with XFree 4.0.1. | |
110 </para> | |
111 | |
112 <para> | |
113 DGA1 provides only direct framebuffer access as described above. For | |
114 switching the resolution of the video signal you have to rely on the | |
115 XVidMode extension. | |
116 </para> | |
117 | |
118 <para> | |
119 DGA2 incorporates the features of XVidMode extension and also allows | |
120 switching the depth of the display. So you may, although basically | |
121 running a 32 bit depth X server, switch to a depth of 15 bits and vice | |
122 versa. | |
123 </para> | |
124 | |
125 <para> | |
126 However DGA has some drawbacks. It seems it is somewhat dependent on the | |
127 graphics chip you use and on the implementation of the X server's video | |
128 driver that controls this chip. So it does not work on every system... | |
129 </para> | |
130 | |
131 <formalpara> | |
132 <title>INSTALLING DGA SUPPORT FOR MPLAYER</title> | |
133 | |
134 <para> | |
135 First make sure X loads the DGA extension, see in | |
136 <filename>/var/log/XFree86.0.log</filename>: | |
137 | |
138 <programlisting>(II) Loading extension XFree86-DGA</programlisting> | |
139 | |
21521 | 140 See, XFree86 4.0.x or greater is |
141 <emphasis role="bold">highly recommended</emphasis>! | |
9675 | 142 <application>MPlayer</application>'s DGA driver is autodetected by |
143 <filename>./configure</filename>, or you can force it | |
144 with <option>--enable-dga</option>. | |
145 </para> | |
146 </formalpara> | |
147 | |
148 <para> | |
149 If the driver couldn't switch to a smaller resolution, experiment with | |
150 options <option>-vm</option> (only with X 3.3.x), <option>-fs</option>, | |
151 <option>-bpp</option>, <option>-zoom</option> to find a video mode that | |
152 the movie fits in. There is no converter right now :( | |
153 </para> | |
154 | |
155 <para> | |
156 Become <systemitem class="username">root</systemitem>. DGA needs root | |
157 access to be able to write directly video memory. If you want to run it as | |
158 user, then install <application>MPlayer</application> SUID root: | |
159 | |
160 <screen> | |
11713 | 161 chown root <replaceable>/usr/local/bin/mplayer</replaceable> |
162 chmod 750 <replaceable>/usr/local/bin/mplayer</replaceable> | |
163 chmod +s <replaceable>/usr/local/bin/mplayer</replaceable> | |
9675 | 164 </screen> |
165 | |
166 Now it works as a simple user, too. | |
167 </para> | |
168 | |
169 <caution> | |
170 <title>Security risk</title> | |
171 <para> | |
10111 | 172 This is a <emphasis role="bold">big</emphasis> security risk! |
21521 | 173 <emphasis role="bold">Never</emphasis> do this on a server or on a computer |
174 that can be accessed by other people because they can gain root privileges | |
175 through SUID root <application>MPlayer</application>. | |
9675 | 176 </para> |
177 </caution> | |
178 | |
179 <para> | |
180 Now use <option>-vo dga</option> option, and there you go! (hope so:) You | |
17496 | 181 should also try if the <option>-vo sdl:driver=dga</option> option works for you! |
9675 | 182 It's much faster! |
183 </para> | |
184 | |
185 | |
186 <formalpara id="dga-modelines"> | |
187 <title>RESOLUTION SWITCHING</title> | |
188 | |
189 <para> | |
190 The DGA driver allows for switching the resolution of the output signal. | |
191 This avoids the need for doing (slow) software scaling and at the same time | |
192 provides a fullscreen image. Ideally it would switch to the exact | |
193 resolution (except for honoring aspect ratio) of the video data, but the X | |
194 server only allows switching to resolutions predefined in | |
195 <filename>/etc/X11/XF86Config</filename> | |
196 (<filename>/etc/X11/XF86Config-4</filename> for XFree 4.X.X respectively). | |
197 Those are defined by so-called modelines and depend on | |
198 the capabilities of your video hardware. The X server scans this config | |
199 file on startup and disables the modelines not suitable for your hardware. | |
200 You can find out which modes survive with the X11 log file. It can be found | |
201 at: <filename>/var/log/XFree86.0.log</filename>. | |
202 </para> | |
203 </formalpara> | |
204 | |
205 <para> | |
206 These entries are known to work fine with a Riva128 chip, using the nv.o X | |
207 server driver module. | |
208 </para> | |
209 | |
210 <para><programlisting> | |
211 Section "Modes" | |
212 Identifier "Modes[0]" | |
213 Modeline "800x600" 40 800 840 968 1056 600 601 605 628 | |
214 Modeline "712x600" 35.0 712 740 850 900 400 410 412 425 | |
215 Modeline "640x480" 25.175 640 664 760 800 480 491 493 525 | |
216 Modeline "400x300" 20 400 416 480 528 300 301 303 314 Doublescan | |
217 Modeline "352x288" 25.10 352 368 416 432 288 296 290 310 | |
218 Modeline "352x240" 15.750 352 368 416 432 240 244 246 262 Doublescan | |
219 Modeline "320x240" 12.588 320 336 384 400 240 245 246 262 Doublescan | |
220 EndSection | |
221 </programlisting></para> | |
222 | |
223 | |
224 <formalpara> | |
225 <title>DGA & MPLAYER</title> | |
226 <para> | |
227 DGA is used in two places with <application>MPlayer</application>: The SDL | |
17496 | 228 driver can be made to make use of it (<option>-vo sdl:driver=dga</option>) and |
9675 | 229 within the DGA driver (<option>-vo dga</option>). The above said is true |
230 for both; in the following sections I'll explain how the DGA driver for | |
231 <application>MPlayer</application> works. | |
232 </para> | |
233 </formalpara> | |
234 | |
235 | |
236 <formalpara> | |
237 <title>FEATURES</title> | |
238 | |
239 <para> | |
240 The DGA driver is invoked by specifying <option>-vo dga</option> at the | |
14318 | 241 command line. The default behavior is to switch to a resolution matching |
9675 | 242 the original resolution of the video as close as possible. It deliberately |
243 ignores the <option>-vm</option> and <option>-fs</option> options | |
244 (enabling of video mode switching and fullscreen) - it always tries to | |
245 cover as much area of your screen as possible by switching the video mode, | |
13908
befd295c58d3
small clarification and syntactic fix (approved by Diego)
rathann
parents:
13490
diff
changeset
|
246 thus refraining from using additional cycles of your CPU to scale the |
9675 | 247 image. If you don't like the mode it chooses you may force it to choose |
248 the mode matching closest the resolution you specify by <option>-x</option> | |
249 and <option>-y</option>. By providing the <option>-v</option> option, the | |
250 DGA driver will print, among a lot of other things, a list of all | |
251 resolutions supported by your current <filename>XF86Config</filename> file. | |
252 Having DGA2 you may also force it to use a certain depth by using the | |
253 <option>-bpp</option> option. Valid depths are 15, 16, 24 and 32. It | |
254 depends on your hardware whether these depths are natively supported or if | |
255 a (possibly slow) conversion has to be done. | |
256 </para> | |
257 </formalpara> | |
258 <para> | |
259 If you should be lucky enough to have enough offscreen memory left to | |
13082 | 260 put a whole image there, the DGA driver will use double buffering, which |
13087 | 261 results in much smoother movie playback. It will tell you whether |
13082 | 262 double buffering is enabled or not. |
9675 | 263 </para> |
264 | |
265 <para> | |
13082 | 266 Double buffering means that the next frame of your video is being drawn in |
9675 | 267 some offscreen memory while the current frame is being displayed. When the |
268 next frame is ready, the graphics chip is just told the location in memory | |
269 of the new frame and simply fetches the data to be displayed from there. | |
270 In the meantime the other buffer in memory will be filled again with new | |
271 video data. | |
272 </para> | |
273 | |
274 <para> | |
13082 | 275 Double buffering may be switched on by using the option |
9675 | 276 <option>-double</option> and may be disabled with |
277 <option>-nodouble</option>. Current default option is to disable | |
13082 | 278 double buffering. When using the DGA driver, onscreen display (OSD) only |
279 works with double buffering enabled. However, enabling double buffering may | |
9675 | 280 result in a big speed penalty (on my K6-II+ 525 it used an additional 20% |
281 of CPU time!) depending on the implementation of DGA for your hardware. | |
282 </para> | |
283 | |
284 | |
285 <formalpara> | |
286 <title>SPEED ISSUES</title> | |
287 | |
288 <para> | |
289 Generally spoken, DGA framebuffer access should be at least as fast as | |
290 using the X11 driver with the additional benefit of getting a fullscreen | |
14318 | 291 image. The percentage speed values printed by |
9675 | 292 <application>MPlayer</application> have to be interpreted with some care, |
293 as for example, with the X11 driver they do not include the time used by | |
294 the X server needed for the actual drawing. Hook a terminal to a serial | |
295 line of your box and start <command>top</command> to see what is really | |
296 going on in your box. | |
297 </para> | |
298 </formalpara> | |
299 | |
300 <para> | |
301 Generally spoken, the speedup done by using DGA against 'normal' use of X11 | |
302 highly depends on your graphics card and how well the X server module for it | |
303 is optimized. | |
304 </para> | |
305 | |
306 <para> | |
307 If you have a slow system, better use 15 or 16 bit depth since they require | |
308 only half the memory bandwidth of a 32 bit display. | |
309 </para> | |
310 | |
311 <para> | |
20863 | 312 Using a depth of 24 bit is a good idea even if your card natively just supports |
9675 | 313 32 bit depth since it transfers 25% less data compared to the 32/32 mode. |
314 </para> | |
315 | |
316 <para> | |
13087 | 317 I've seen some AVI files be played back on a Pentium MMX 266. AMD K6-2 |
9675 | 318 CPUs might work at 400 MHZ and above. |
319 </para> | |
320 | |
321 | |
322 <formalpara> | |
323 <title>KNOWN BUGS</title> | |
324 | |
325 <para> | |
326 Well, according to some developers of XFree, DGA is quite a beast. They | |
327 tell you better not to use it. Its implementation is not always flawless | |
328 with every chipset driver for XFree out there. | |
329 </para> | |
330 </formalpara> | |
331 | |
332 <itemizedlist> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
333 <listitem><para> |
9675 | 334 With XFree 4.0.3 and <filename>nv.o</filename> there is a bug resulting |
335 in strange colors. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
336 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
337 <listitem><para> |
9675 | 338 ATI driver requires to switch mode back more than once after finishing |
339 using of DGA. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
340 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
341 <listitem><para> |
9675 | 342 Some drivers simply fail to switch back to normal resolution (use |
21720 | 343 <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Keypad +</keycap></keycombo> |
344 and | |
345 <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Keypad -</keycap></keycombo> | |
9675 | 346 to switch back manually). |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
347 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
348 <listitem><para> |
9675 | 349 Some drivers simply display strange colors. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
350 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
351 <listitem><para> |
9675 | 352 Some drivers lie about the amount of memory they map into the process's |
13082 | 353 address space, thus vo_dga won't use double buffering (SIS?). |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
354 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
355 <listitem><para> |
9675 | 356 Some drivers seem to fail to report even a single valid mode. In this |
357 case the DGA driver will crash telling you about a nonsense mode of | |
358 100000x100000 or something like that. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
359 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
360 <listitem><para> |
13082 | 361 OSD only works with double buffering enabled (else it flickers). |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
362 </para></listitem> |
9675 | 363 </itemizedlist> |
364 | |
22836 | 365 </sect1> |
9675 | 366 |
367 <!-- ********** --> | |
368 | |
22836 | 369 <sect1 id="svgalib"> |
9675 | 370 <title>SVGAlib</title> |
371 | |
372 <formalpara> | |
373 <title>INSTALLATION</title> | |
374 <para> | |
375 You'll have to install svgalib and its development package in order for | |
376 <application>MPlayer</application> build its SVGAlib driver (autodetected, | |
377 but can be forced), and don't forget to edit | |
378 <filename>/etc/vga/libvga.config</filename> to suit your card and monitor. | |
379 </para> | |
380 </formalpara> | |
381 | |
21521 | 382 <note><para> |
9675 | 383 Be sure not to use the <option>-fs</option> switch, since it toggles the |
384 usage of the software scaler, and it's slow. If you really need it, use the | |
385 <option>-sws 4</option> option which will produce bad quality, but is | |
386 somewhat faster. | |
21521 | 387 </para></note> |
9675 | 388 |
20862 | 389 <formalpara> |
390 <title>EGA (4BPP) SUPPORT</title> | |
9675 | 391 <para> |
392 SVGAlib incorporates EGAlib, and <application>MPlayer</application> has the | |
393 possibility to display any movie in 16 colors, thus usable in the following | |
394 sets: | |
395 </para> | |
396 </formalpara> | |
397 | |
398 <itemizedlist> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
399 <listitem><para> |
9675 | 400 EGA card with EGA monitor: 320x200x4bpp, 640x200x4bpp, 640x350x4bpp |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
401 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
402 <listitem><para> |
9675 | 403 EGA card with CGA monitor: 320x200x4bpp, 640x200x4bpp |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
404 </para></listitem> |
9675 | 405 </itemizedlist> |
406 | |
407 <para> | |
408 The bpp (bits per pixel) value must be set to 4 by hand: | |
409 <option>-bpp 4</option> | |
410 </para> | |
411 | |
412 <para> | |
413 The movie probably must be scaled down to fit in EGA mode: | |
9677 | 414 <screen>-vf scale=640:350</screen> |
9675 | 415 or |
9677 | 416 <screen>-vf scale=320:200</screen> |
9675 | 417 </para> |
418 | |
419 <para> | |
420 For that we need fast but bad quality scaling routine: | |
421 <screen>-sws 4</screen> | |
422 </para> | |
423 | |
424 <para> | |
425 Maybe automatic aspect correction has to be shut off: | |
426 <screen>-noaspect</screen> | |
427 </para> | |
428 | |
429 <note><para> | |
9683 | 430 According to my experience the best image quality on |
9675 | 431 EGA screens can be achieved by decreasing the brightness a bit: |
9677 | 432 <option>-vf eq=-20:0</option>. I also needed to lower the audio |
9675 | 433 samplerate on my box, because the sound was broken on 44kHz: |
434 <option>-srate 22050</option>. | |
435 </para></note> | |
436 | |
437 <para> | |
11214 | 438 You can turn on OSD and subtitles only with the <option>expand</option> |
9675 | 439 filter, see the man page for exact parameters. |
440 </para> | |
22836 | 441 </sect1> |
9675 | 442 |
20862 | 443 <!-- ********** --> |
9675 | 444 |
22836 | 445 <sect1 id="fbdev"> |
9675 | 446 <title>Framebuffer output (FBdev)</title> |
447 | |
448 <para> | |
449 Whether to build the FBdev target is autodetected during | |
10111 | 450 <filename>./configure</filename>. Read the framebuffer documentation in |
9675 | 451 the kernel sources (<filename>Documentation/fb/*</filename>) for more |
452 information. | |
453 </para> | |
454 | |
455 <para> | |
456 If your card doesn't support VBE 2.0 standard (older ISA/PCI cards, such as | |
457 S3 Trio64), only VBE 1.2 (or older?): Well, VESAfb is still available, but | |
458 you'll have to load SciTech Display Doctor (formerly UniVBE) before booting | |
459 Linux. Use a DOS boot disk or whatever. And don't forget to register your | |
460 UniVBE ;)) | |
461 </para> | |
462 | |
463 <para> | |
464 The FBdev output takes some additional parameters above the others: | |
465 </para> | |
466 | |
467 <variablelist> | |
468 <varlistentry> | |
469 <term><option>-fb</option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
470 <listitem><para> |
18649 | 471 specify the framebuffer device to use (default: <filename>/dev/fb0</filename>) |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
472 </para></listitem> |
9675 | 473 </varlistentry> |
474 <varlistentry> | |
475 <term><option>-fbmode</option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
476 <listitem><para> |
9675 | 477 mode name to use (according to <filename>/etc/fb.modes</filename>) |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
478 </para></listitem> |
9675 | 479 </varlistentry> |
480 <varlistentry> | |
481 <term><option>-fbmodeconfig</option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
482 <listitem><para> |
18649 | 483 config file of modes (default: <filename>/etc/fb.modes</filename>) |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
484 </para></listitem> |
9675 | 485 </varlistentry> |
486 <varlistentry> | |
11287 | 487 <term><option>-monitor-hfreq</option></term> |
488 <term><option>-monitor-vfreq</option></term> | |
489 <term><option>-monitor-dotclock</option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
490 <listitem><para> |
9675 | 491 <emphasis role="bold">important</emphasis> values, see |
492 <filename>example.conf</filename> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
493 </para></listitem> |
9675 | 494 </varlistentry> |
495 </variablelist> | |
496 | |
497 <para> | |
498 If you want to change to a specific mode, then use | |
11713 | 499 <screen> |
500 mplayer -vm -fbmode <replaceable>name_of_mode</replaceable> <replaceable>filename</replaceable> | |
501 </screen> | |
9675 | 502 </para> |
503 | |
504 <itemizedlist> | |
505 <listitem><para> | |
506 <option>-vm</option> alone will choose the most suitable mode from | |
507 <filename>/etc/fb.modes</filename>. Can be used together with | |
508 <option>-x</option> and <option>-y</option> options too. The | |
509 <option>-flip</option> option is supported only if the movie's pixel | |
10132 | 510 format matches the video mode's pixel format. Pay attention to the bpp |
9675 | 511 value, fbdev driver tries to use the current, or if you specify the |
512 <option>-bpp</option> option, then that. | |
20862 | 513 </para></listitem> |
9675 | 514 <listitem><para> |
21521 | 515 <option>-zoom</option> option isn't supported |
516 (use <option>-vf scale</option>). You can't use 8bpp (or less) modes. | |
20862 | 517 </para></listitem> |
9675 | 518 <listitem><para> |
519 You possibly want to turn the cursor off: | |
520 <screen>echo -e '\033[?25l'</screen> | |
521 or | |
522 <screen>setterm -cursor off</screen> | |
523 and the screen saver: | |
524 <screen>setterm -blank 0</screen> | |
525 To turn the cursor back on: | |
526 <screen>echo -e '\033[?25h'</screen> | |
527 or | |
528 <screen>setterm -cursor on</screen> | |
20862 | 529 </para></listitem> |
9675 | 530 </itemizedlist> |
531 | |
21521 | 532 <note><para> |
9675 | 533 FBdev video mode changing <emphasis>does not work</emphasis> with the VESA |
534 framebuffer, and don't ask for it, since it's not an | |
535 <application>MPlayer</application> limitation. | |
21521 | 536 </para></note> |
22836 | 537 </sect1> |
9675 | 538 |
20862 | 539 <!-- ********** --> |
9675 | 540 |
22836 | 541 <sect1 id="mga_vid"> |
9675 | 542 <title>Matrox framebuffer (mga_vid)</title> |
543 | |
544 <para> | |
22661
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
545 <systemitem>mga_vid</systemitem> is a combination of a video output driver and |
26958 | 546 a Linux kernel module that utilizes the Matrox G200/G400/G450/G550 video |
22661
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
547 scaler/overlay unit to perform YUV->RGB colorspace conversion and arbitrary |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
548 video scaling. |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
549 <systemitem>mga_vid</systemitem> has hardware VSYNC support with triple |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
550 buffering. It works on both a framebuffer console and under X, but only |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
551 with Linux 2.4.x. |
9675 | 552 </para> |
553 | |
22677
668f15f32e2c
Add a link to Attila's mga_vid port to Linux 2.6.x.
diego
parents:
22668
diff
changeset
|
554 <para> |
668f15f32e2c
Add a link to Attila's mga_vid port to Linux 2.6.x.
diego
parents:
22668
diff
changeset
|
555 For a Linux 2.6.x version of this driver check out |
27012
98d21a20348c
Add information about the mga_vid Subversion repository.
diego
parents:
27011
diff
changeset
|
556 <ulink url="http://attila.kinali.ch/mga/"/> or have a look at the external |
98d21a20348c
Add information about the mga_vid Subversion repository.
diego
parents:
27011
diff
changeset
|
557 Subversion repository of mga_vid which can be checked out via |
98d21a20348c
Add information about the mga_vid Subversion repository.
diego
parents:
27011
diff
changeset
|
558 |
98d21a20348c
Add information about the mga_vid Subversion repository.
diego
parents:
27011
diff
changeset
|
559 <screen> |
98d21a20348c
Add information about the mga_vid Subversion repository.
diego
parents:
27011
diff
changeset
|
560 svn checkout svn://svn.mplayerhq.hu/mga_vid |
98d21a20348c
Add information about the mga_vid Subversion repository.
diego
parents:
27011
diff
changeset
|
561 </screen> |
22677
668f15f32e2c
Add a link to Attila's mga_vid port to Linux 2.6.x.
diego
parents:
22668
diff
changeset
|
562 </para> |
668f15f32e2c
Add a link to Attila's mga_vid port to Linux 2.6.x.
diego
parents:
22668
diff
changeset
|
563 |
9675 | 564 <procedure> |
565 <title>Installation:</title> | |
566 <step><para> | |
26882 | 567 To use it, you first have to compile <filename>drivers/mga_vid.o</filename>: |
9675 | 568 <screen> |
26882 | 569 make drivers<!-- |
9675 | 570 --></screen> |
20862 | 571 </para></step> |
9675 | 572 <step><para> |
22686
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
573 Then run (as <systemitem class="username">root</systemitem>) |
26882 | 574 <screen>make install-drivers</screen> |
22686
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
575 which should install the module and create the device node for you. |
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
576 Load the driver with |
9675 | 577 <screen>insmod mga_vid.o</screen> |
20862 | 578 </para></step> |
9675 | 579 <step><para> |
580 You should verify the memory size detection using the | |
581 <command>dmesg</command> command. If it's bad, use the | |
582 <option>mga_ram_size</option> option | |
583 (<command>rmmod mga_vid</command> first), | |
584 specify card's memory size in MB: | |
585 <screen>insmod mga_vid.o mga_ram_size=16</screen> | |
20862 | 586 </para></step> |
9675 | 587 <step><para> |
588 To make it load/unload automatically when needed, first insert the | |
589 following line at the end of <filename>/etc/modules.conf</filename>: | |
12815 | 590 |
9675 | 591 <programlisting>alias char-major-178 mga_vid</programlisting> |
20862 | 592 </para></step> |
9675 | 593 <step><para> |
594 Now you have to (re)compile <application>MPlayer</application>, | |
22661
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
595 <command>./configure</command> will detect |
9675 | 596 <filename>/dev/mga_vid</filename> and build the 'mga' driver. Using it |
597 from <application>MPlayer</application> goes by <option>-vo mga</option> | |
598 if you have matroxfb console, or <option>-vo xmga</option> under XFree86 | |
599 3.x.x or 4.x.x. | |
20862 | 600 </para></step> |
9675 | 601 </procedure> |
602 | |
603 <para> | |
604 The mga_vid driver cooperates with Xv. | |
605 </para> | |
606 | |
607 <para> | |
608 The <filename>/dev/mga_vid</filename> device file can be read for some | |
609 info, for example by | |
610 <screen>cat /dev/mga_vid</screen> | |
611 and can be written for brightness change: | |
612 <screen>echo "brightness=120" > /dev/mga_vid</screen> | |
613 </para> | |
22661
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
614 |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
615 <para> |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
616 There is a test application called <command>mga_vid_test</command> in the same |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
617 directory. It should draw 256x256 images on the screen if all is working well. |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
618 </para> |
9babdd441b76
Some more details for the mga_vid section taken from drivers/README.
diego
parents:
22384
diff
changeset
|
619 |
22836 | 620 </sect1> |
9675 | 621 |
20862 | 622 <!-- ********** --> |
9675 | 623 |
22836 | 624 <sect1 id="tdfxfb" xreflabel="3Dfx YUV support (tdfxfb)"> |
9675 | 625 <title>3Dfx YUV support</title> |
20862 | 626 |
9675 | 627 <para> |
628 This driver uses the kernel's tdfx framebuffer driver to play movies with | |
629 YUV acceleration. You'll need a kernel with tdfxfb support, and recompile | |
630 with | |
631 <screen>./configure --enable-tdfxfb</screen> | |
632 </para> | |
22836 | 633 </sect1> |
9675 | 634 |
20862 | 635 <!-- ********** --> |
9675 | 636 |
22836 | 637 <sect1 id="tdfx_vid"> |
21878 | 638 <title>tdfx_vid</title> |
639 | |
640 <para> | |
641 This is a combination of a Linux kernel module and a video output | |
642 driver, similar to <link linkend="mga_vid">mga_vid</link>. | |
643 You'll need a 2.4.x kernel with the <systemitem>agpgart</systemitem> | |
644 driver since <systemitem>tdfx_vid</systemitem> uses AGP. | |
645 Pass <option>--enable-tdfxfb</option> to <command>configure</command> | |
646 to build the video output driver and build the kernel module with | |
647 the following instructions. | |
648 </para> | |
649 | |
650 <procedure> | |
651 <title>Installing the tdfx_vid.o kernel module:</title> | |
652 <step><para> | |
26882 | 653 Compile <filename>drivers/tdfx_vid.o</filename>: |
21878 | 654 <screen> |
26882 | 655 make drivers</screen> |
21878 | 656 </para></step> |
657 <step><para> | |
22686
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
658 Then run (as <systemitem class="username">root</systemitem>) |
26882 | 659 <screen>make install-drivers</screen> |
22686
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
660 which should install the module and create the device node for you. |
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
661 Load the driver with |
21878 | 662 <screen>insmod tdfx_vid.o</screen> |
663 </para></step> | |
664 <step><para> | |
665 To make it load/unload automatically when needed, first insert the | |
666 following line at the end of <filename>/etc/modules.conf</filename>: | |
667 | |
668 <programlisting>alias char-major-178 tdfx_vid</programlisting> | |
669 </para></step> | |
670 </procedure> | |
671 | |
22686
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
672 <para> |
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
673 There is a test application called <command>tdfx_vid_test</command> in the same |
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
674 directory. It should print out some useful information if all is working well. |
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
675 </para> |
2677b18556f9
'make install' now takes care of most manual installation steps for *_vid.o.
diego
parents:
22677
diff
changeset
|
676 |
22836 | 677 </sect1> |
21878 | 678 |
679 <!-- ********** --> | |
680 | |
22836 | 681 <sect1 id="opengl"> |
9675 | 682 <title>OpenGL output</title> |
683 | |
684 <para> | |
685 <application>MPlayer</application> supports displaying movies using OpenGL, | |
686 but if your platform/driver supports xv as should be the case on a PC with | |
687 Linux, use xv instead, OpenGL performance is considerably worse. If you | |
688 have an X11 implementation without xv support, OpenGL is a viable | |
689 alternative. | |
690 </para> | |
691 | |
692 <para> | |
693 Unfortunately not all drivers support this feature. The Utah-GLX drivers | |
694 (for XFree86 3.3.6) support it for all cards. | |
13977 | 695 See <ulink url="http://utah-glx.sf.net"/> for details about how to |
9675 | 696 install it. |
697 </para> | |
698 | |
699 <para> | |
700 XFree86(DRI) 4.0.3 or later supports OpenGL with Matrox and Radeon cards, | |
701 4.2.0 or later supports Rage128. | |
13977 | 702 See <ulink url="http://dri.sf.net"/> for download and installation |
9675 | 703 instructions. |
704 </para> | |
10526 | 705 |
706 <para> | |
707 A hint from one of our users: the GL video output can be used to get | |
708 vsynced TV output. You'll have to set an environment variable (at | |
709 least on nVidia): | |
710 </para> | |
711 | |
712 <para> | |
20857 | 713 <command>export __GL_SYNC_TO_VBLANK=1</command> |
10526 | 714 </para> |
22836 | 715 </sect1> |
9675 | 716 |
20862 | 717 <!-- ********** --> |
9675 | 718 |
22836 | 719 <sect1 id="aalib"> |
21521 | 720 <title>AAlib – text mode displaying</title> |
9675 | 721 |
722 <para> | |
723 AAlib is a library for displaying graphics in text mode, using powerful | |
724 ASCII renderer. There are <emphasis>lots</emphasis> of programs already | |
725 supporting it, like Doom, Quake, etc. <application>MPlayer</application> | |
10111 | 726 contains a very usable driver for it. If <filename>./configure</filename> |
9675 | 727 detects aalib installed, the aalib libvo driver will be built. |
728 </para> | |
729 | |
730 <para> | |
731 You can use some keys in the AA Window to change rendering options: | |
732 </para> | |
733 | |
734 <informaltable> | |
735 <tgroup cols="2"> | |
736 <thead> | |
737 <row><entry>Key</entry><entry>Action</entry></row> | |
738 </thead> | |
739 <tbody> | |
740 <row><entry><keycap>1</keycap></entry><entry> | |
741 decrease contrast | |
20862 | 742 </entry></row> |
9675 | 743 <row><entry><keycap>2</keycap></entry><entry> |
744 increase contrast | |
20862 | 745 </entry></row> |
9675 | 746 <row><entry><keycap>3</keycap></entry><entry> |
747 decrease brightness | |
20862 | 748 </entry></row> |
9675 | 749 <row><entry><keycap>4</keycap></entry><entry> |
750 increase brightness | |
20862 | 751 </entry></row> |
9675 | 752 <row><entry><keycap>5</keycap></entry><entry> |
753 switch fast rendering on/off | |
20862 | 754 </entry></row> |
9675 | 755 <row><entry><keycap>6</keycap></entry><entry> |
756 set dithering mode (none, error distribution, Floyd Steinberg) | |
20862 | 757 </entry></row> |
9675 | 758 <row><entry><keycap>7</keycap></entry><entry> |
759 invert image | |
20862 | 760 </entry></row> |
9675 | 761 <row><entry><keycap>8</keycap></entry><entry> |
762 toggles between aa and <application>MPlayer</application> control | |
20862 | 763 </entry></row> |
9675 | 764 </tbody> |
765 </tgroup> | |
766 </informaltable> | |
767 | |
768 <variablelist> | |
769 <title>The following command line options can be used:</title> | |
770 <varlistentry> | |
771 <term><option>-aaosdcolor=<replaceable>V</replaceable></option></term> | |
772 <listitem><para> | |
773 change OSD color | |
20862 | 774 </para></listitem> |
9675 | 775 </varlistentry> |
776 <varlistentry> | |
777 <term><option>-aasubcolor=<replaceable>V</replaceable></option></term> | |
778 <listitem><para> | |
18649 | 779 Change subtitle color |
9675 | 780 </para><para> |
781 where <replaceable>V</replaceable> can be: | |
782 <literal>0</literal> (normal), | |
783 <literal>1</literal> (dark), | |
784 <literal>2</literal> (bold), | |
785 <literal>3</literal> (bold font), | |
786 <literal>4</literal> (reverse), | |
787 <literal>5</literal> (special). | |
20862 | 788 </para></listitem> |
9675 | 789 </varlistentry> |
790 </variablelist> | |
791 | |
792 <variablelist> | |
793 <title>AAlib itself provides a large sum of options. Here are some | |
794 important:</title> | |
795 <varlistentry> | |
796 <term><option>-aadriver</option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
797 <listitem><para> |
18649 | 798 Set recommended aa driver (X11, curses, Linux). |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
799 </para></listitem> |
9675 | 800 </varlistentry> |
801 <varlistentry> | |
802 <term><option>-aaextended</option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
803 <listitem><para> |
18649 | 804 Use all 256 characters. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
805 </para></listitem> |
9675 | 806 </varlistentry> |
807 <varlistentry> | |
808 <term><option>-aaeight</option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
809 <listitem><para> |
18649 | 810 Use eight bit ASCII. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
811 </para></listitem> |
9675 | 812 </varlistentry> |
813 <varlistentry> | |
814 <term><option>-aahelp</option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
815 <listitem><para> |
18649 | 816 Prints out all aalib options. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
817 </para></listitem> |
9675 | 818 </varlistentry> |
819 </variablelist> | |
820 | |
21521 | 821 <note><para> |
9675 | 822 The rendering is very CPU intensive, especially when using AA-on-X |
823 (using aalib on X), and it's least CPU intensive on standard, | |
824 non-framebuffer console. Use SVGATextMode to set up a big textmode, | |
12349 | 825 then enjoy! (secondary head Hercules cards rock :)) (but IMHO you |
10111 | 826 can use <option>-vf 1bpp</option> option to get graphics on hgafb:) |
21521 | 827 </para></note> |
9675 | 828 |
829 <para> | |
830 Use the <option>-framedrop</option> option if your computer isn't fast | |
831 enough to render all frames! | |
832 </para> | |
833 | |
834 <para> | |
835 Playing on terminal you'll get better speed and quality using the Linux | |
836 driver, not curses (<option>-aadriver linux</option>). But therefore you | |
837 need write access on | |
838 <filename>/dev/vcsa<replaceable><terminal></replaceable></filename>! | |
839 That isn't autodetected by aalib, but vo_aa tries to find the best mode. | |
13977 | 840 See <ulink url="http://aa-project.sf.net/tune"/> for further |
9675 | 841 tuning issues. |
842 </para> | |
22836 | 843 </sect1> |
9675 | 844 |
20862 | 845 <!-- ********** --> |
9675 | 846 |
22836 | 847 <sect1 id="caca"> |
21521 | 848 <title> |
849 <systemitem class="library">libcaca</systemitem> – Color ASCII Art library | |
850 </title> | |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
851 |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
852 <para> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
853 The <ulink url="http://sam.zoy.org/projects/libcaca/"><systemitem class="library">libcaca</systemitem></ulink> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
854 library is a graphics library that outputs text instead of pixels, so that it |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
855 can work on older video cards or text terminals. It is not unlike the famous |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
856 <systemitem class="library">AAlib</systemitem> library. |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
857 <systemitem class="library">libcaca</systemitem> needs a terminal to work, thus |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
858 it should work on all Unix systems (including Mac OS X) using either the |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
859 <systemitem class="library">slang</systemitem> library or the |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
860 <systemitem class="library">ncurses</systemitem> library, on DOS using the |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
861 <systemitem class="library">conio.h</systemitem> library, and on Windows systems |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
862 using either <systemitem class="library">slang</systemitem> or |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
863 <systemitem class="library">ncurses</systemitem> (through Cygwin emulation) or |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
864 <systemitem class="library">conio.h</systemitem>. If |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
865 <filename>./configure</filename> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
866 detects <systemitem class="library">libcaca</systemitem>, the caca libvo driver |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
867 will be built. |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
868 </para> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
869 |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
870 <itemizedlist> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
871 <title>The differences with <systemitem class="library">AAlib</systemitem> are |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
872 the following:</title> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
873 <listitem><para> |
12349 | 874 16 available colors for character output (256 color pairs) |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
875 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
876 <listitem><para> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
877 color image dithering |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
878 </para></listitem> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
879 </itemizedlist> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
880 |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
881 <itemizedlist> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
882 <title>But <systemitem class="library">libcaca</systemitem> also has the |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
883 following limitations:</title> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
884 <listitem><para> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
885 no support for brightness, contrast, gamma |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
886 </para></listitem> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
887 </itemizedlist> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
888 |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
889 <para> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
890 You can use some keys in the caca window to change rendering options: |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
891 </para> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
892 |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
893 <informaltable> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
894 <tgroup cols="2"> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
895 <thead> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
896 <row><entry>Key</entry><entry>Action</entry></row> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
897 </thead> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
898 <tbody> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
899 <row><entry><keycap>d</keycap></entry><entry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
900 Toggle <systemitem class="library">libcaca</systemitem> dithering methods. |
20862 | 901 </entry></row> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
902 <row><entry><keycap>a</keycap></entry><entry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
903 Toggle <systemitem class="library">libcaca</systemitem> antialiasing. |
20862 | 904 </entry></row> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
905 <row><entry><keycap>b</keycap></entry><entry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
906 Toggle <systemitem class="library">libcaca</systemitem> background. |
20862 | 907 </entry></row> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
908 </tbody> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
909 </tgroup> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
910 </informaltable> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
911 |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
912 <variablelist> |
21521 | 913 <title><systemitem class="library">libcaca</systemitem> will also look for |
914 certain environment variables:</title> | |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
915 <varlistentry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
916 <term><option>CACA_DRIVER</option></term> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
917 <listitem><para> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
918 Set recommended caca driver. e.g. ncurses, slang, x11. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
919 </para></listitem> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
920 </varlistentry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
921 <varlistentry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
922 <term><option>CACA_GEOMETRY (X11 only)</option></term> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
923 <listitem><para> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
924 Specifies the number of rows and columns. e.g. 128x50. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
925 </para></listitem> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
926 </varlistentry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
927 <varlistentry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
928 <term><option>CACA_FONT (X11 only)</option></term> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
929 <listitem><para> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
930 Specifies the font to use. e.g. fixed, nexus. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
931 </para></listitem> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
932 </varlistentry> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
933 </variablelist> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
934 |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
935 <para> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
936 Use the <option>-framedrop</option> option if your computer is not fast |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
937 enough to render all frames. |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
938 </para> |
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
939 |
22836 | 940 </sect1> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
941 |
20862 | 942 <!-- ********** --> |
12216
d4e2bdc246a3
-vo caca documentation, patch by Pigeon <pigeon@pigeond.net>
diego
parents:
12188
diff
changeset
|
943 |
22836 | 944 <sect1 id="vesa"> |
9675 | 945 <title>VESA - output to VESA BIOS</title> |
946 | |
947 <para> | |
948 This driver was designed and introduced as a <emphasis role="bold">generic | |
949 driver</emphasis> for any video card which has VESA VBE 2.0 compatible | |
950 BIOS. Another advantage of this driver is that it tries to force TV output | |
951 on. | |
952 <citetitle>VESA BIOS EXTENSION (VBE) Version 3.0 Date: September 16, | |
953 1998</citetitle> (Page 70) says: | |
954 </para> | |
955 | |
956 <blockquote> | |
957 <formalpara><title>Dual-Controller Designs</title> | |
958 <para> | |
959 VBE 3.0 supports the dual-controller design by assuming that since both | |
960 controllers are typically provided by the same OEM, under control of a | |
961 single BIOS ROM on the same graphics card, it is possible to hide the fact | |
962 that two controllers are indeed present from the application. This has the | |
963 limitation of preventing simultaneous use of the independent controllers, | |
964 but allows applications released before VBE 3.0 to operate normally. The | |
965 VBE Function 00h (Return Controller Information) returns the combined | |
966 information of both controllers, including the combined list of available | |
14318 | 967 modes. When the application selects a mode, the appropriate controller is |
968 activated. Each of the remaining VBE functions then operates on the active | |
9675 | 969 controller. |
970 </para> | |
971 </formalpara> | |
972 </blockquote> | |
973 | |
974 <para> | |
975 So you have chances to get working TV-out by using this driver. | |
976 (I guess that TV-out frequently is standalone head or standalone output | |
977 at least.) | |
978 </para> | |
979 | |
980 <itemizedlist spacing="compact"> | |
981 <title>ADVANTAGES</title> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
982 <listitem><para> |
9675 | 983 You have chances to watch movies <emphasis role="bold">if Linux even doesn't |
984 know</emphasis> your video hardware. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
985 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
986 <listitem><para> |
9675 | 987 You don't need to have installed any graphics' related things on your |
13222 | 988 Linux (like X11 (AKA XFree86), fbdev and so on). This driver can be run |
9675 | 989 from <emphasis role="bold">text-mode</emphasis>. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
990 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
991 <listitem><para> |
9675 | 992 You have chances to get <emphasis role="bold">working TV-out</emphasis>. |
993 (It's known at least for ATI's cards). | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
994 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
995 <listitem><para> |
9675 | 996 This driver calls <function>int 10h</function> handler thus it's not |
997 an emulator - it calls <emphasis role="bold">real</emphasis> things of | |
10971
12315a6590a1
Clumsy wording improved byRuben Garcia <ruben@ugr.es> and
diego
parents:
10965
diff
changeset
|
998 <emphasis>real</emphasis> BIOS in <emphasis>real-mode</emphasis> |
12315a6590a1
Clumsy wording improved byRuben Garcia <ruben@ugr.es> and
diego
parents:
10965
diff
changeset
|
999 (actually in vm86 mode). |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1000 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1001 <listitem><para> |
9675 | 1002 You can use VIDIX with it, thus getting accelerated video display |
1003 <emphasis role="bold">and</emphasis> TV output at the same time! | |
1004 (Recommended for ATI cards.) | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1005 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1006 <listitem><para> |
10111 | 1007 If you have VESA VBE 3.0+, and you had specified |
11287 | 1008 <option>monitor-hfreq, monitor-vfreq, monitor-dotclock</option> somewhere |
12349 | 1009 (config file, or command line) you will get the highest possible refresh rate. |
10111 | 1010 (Using General Timing Formula). To enable this feature you have to specify |
1011 <emphasis role="bold">all</emphasis> your monitor options. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1012 </para></listitem> |
9675 | 1013 </itemizedlist> |
1014 | |
1015 <itemizedlist spacing="compact"> | |
1016 <title>DISADVANTAGES</title> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1017 <listitem><para> |
9675 | 1018 It works only on <emphasis role="bold">x86 systems</emphasis>. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1019 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1020 <listitem><para> |
9675 | 1021 It can be used only by <systemitem class="username">root</systemitem>. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1022 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1023 <listitem><para> |
9675 | 1024 Currently it's available only for <emphasis role="bold">Linux</emphasis>. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1025 </para></listitem> |
9675 | 1026 </itemizedlist> |
1027 | |
1028 <variablelist> | |
1029 <title>COMMAND LINE OPTIONS AVAILABLE FOR VESA</title> | |
1030 <varlistentry> | |
1031 <term><option>-vo vesa:<replaceable>opts</replaceable></option></term> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1032 <listitem><para> |
9675 | 1033 currently recognized: <literal>dga</literal> to force dga mode and |
1034 <literal>nodga</literal> to disable dga mode. In dga mode you can enable | |
10111 | 1035 double buffering via the <option>-double</option> option. Note: you may omit |
1036 these parameters to enable <emphasis role="bold">autodetection</emphasis> of | |
1037 dga mode. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1038 </para></listitem> |
9675 | 1039 </varlistentry> |
1040 </variablelist> | |
1041 | |
1042 <itemizedlist spacing="compact"> | |
1043 <title>KNOWN PROBLEMS AND WORKAROUNDS</title> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1044 <listitem><para> |
9675 | 1045 If you have installed <emphasis role="bold">NLS</emphasis> font on your |
1046 Linux box and run VESA driver from text-mode then after terminating | |
1047 <application>MPlayer</application> you will have | |
1048 <emphasis role="bold">ROM font</emphasis> loaded instead of national. | |
1049 You can load national font again by using <command>setsysfont</command> | |
15894 | 1050 utility from the Mandrake/Mandriva distribution for example. |
9675 | 1051 (<emphasis role="bold">Hint</emphasis>: The same utility is used for |
1052 localization of fbdev). | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1053 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1054 <listitem><para> |
9675 | 1055 Some <emphasis role="bold">Linux graphics drivers</emphasis> don't update |
1056 active <emphasis role="bold">BIOS mode</emphasis> in DOS memory. | |
1057 So if you have such problem - always use VESA driver only from | |
1058 <emphasis role="bold">text-mode</emphasis>. Otherwise text-mode (#03) will | |
1059 be activated anyway and you will need restart your computer. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1060 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1061 <listitem><para> |
21521 | 1062 Often after terminating VESA driver you get |
1063 <emphasis role="bold">black</emphasis> screen. To return your screen to | |
21720 | 1064 original state - simply switch to other console (by pressing |
1065 <keycombo><keycap>Alt</keycap><keycap>F<x></keycap></keycombo>) | |
9675 | 1066 then switch to your previous console by the same way. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1067 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1068 <listitem><para> |
9675 | 1069 To get <emphasis role="bold">working TV-out</emphasis> you need have plugged |
1070 TV-connector in before booting your PC since video BIOS initializes | |
1071 itself only once during POST procedure. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1072 </para></listitem> |
9675 | 1073 </itemizedlist> |
22836 | 1074 </sect1> |
9675 | 1075 |
20862 | 1076 <!-- ********** --> |
9675 | 1077 |
22836 | 1078 <sect1 id="x11"> |
9675 | 1079 <title>X11</title> |
1080 | |
1081 <para> | |
1082 Avoid if possible. Outputs to X11 (uses shared memory extension), with no | |
1083 hardware acceleration at all. Supports (MMX/3DNow/SSE accelerated, but | |
1084 still slow) software scaling, use the options <option>-fs -zoom</option>. | |
1085 Most cards have hardware scaling support, use the <option>-vo xv</option> | |
12349 | 1086 output for them, or <option>-vo xmga</option> for Matrox cards. |
9675 | 1087 </para> |
1088 | |
1089 <para> | |
1090 The problem is that most cards' driver doesn't support hardware | |
1091 acceleration on the second head/TV. In those cases, you see green/blue | |
1092 colored window instead of the movie. This is where this driver comes in | |
1093 handy, but you need powerful CPU to use software scaling. Don't use the SDL | |
1094 driver's software output+scaler, it has worse image quality! | |
1095 </para> | |
1096 | |
1097 <para> | |
1098 Software scaling is very slow, you better try changing video modes instead. | |
1099 It's very simple. See the <link linkend="dga-modelines">DGA section's | |
1100 modelines</link>, and insert them into your <filename>XF86Config</filename>. | |
1101 | |
1102 <itemizedlist spacing="compact"> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1103 <listitem><para> |
9675 | 1104 If you have XFree86 4.x.x: use the <option>-vm</option> option. It will |
1105 change to a resolution your movie fits in. If it doesn't: | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1106 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1107 <listitem><para> |
9675 | 1108 With XFree86 3.x.x: you have to cycle through available resolutions |
1109 with the | |
21720 | 1110 <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Keypad +</keycap></keycombo> |
9675 | 1111 and |
21720 | 1112 <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Keypad -</keycap></keycombo> |
9675 | 1113 keys. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1114 </para></listitem> |
9675 | 1115 </itemizedlist> |
1116 </para> | |
1117 | |
1118 <para> | |
1119 If you can't find the modes you inserted, browse XFree86's output. Some | |
1120 drivers can't use low pixelclocks that are needed for low resolution | |
1121 video modes. | |
1122 </para> | |
22836 | 1123 </sect1> |
9675 | 1124 |
20862 | 1125 <!-- ********** --> |
9675 | 1126 |
22836 | 1127 <sect1 id="vidix"> |
9675 | 1128 <title>VIDIX</title> |
1129 | |
21521 | 1130 <formalpara><title>PREAMBLE</title> |
9675 | 1131 <para> |
21521 | 1132 <acronym>VIDIX</acronym> is the abbreviation for |
1133 <emphasis role="bold">VID</emphasis>eo | |
1134 <emphasis role="bold">I</emphasis>nterface | |
1135 for *ni<emphasis role="bold">X</emphasis>. | |
9675 | 1136 VIDIX was designed and introduced as an interface for fast user-space drivers |
21521 | 1137 providing such video performance as mga_vid does for Matrox cards. It's also |
1138 very portable. | |
9675 | 1139 </para> |
1140 </formalpara> | |
21521 | 1141 |
9675 | 1142 <para> |
1143 This interface was designed as an attempt to fit existing video | |
1144 acceleration interfaces (known as mga_vid, rage128_vid, radeon_vid, | |
12349 | 1145 pm3_vid) into a fixed scheme. It provides a high level interface to chips |
9675 | 1146 which are known as BES (BackEnd scalers) or OV (Video Overlays). It doesn't |
12349 | 1147 provide low level interface to things which are known as graphics servers. |
9675 | 1148 (I don't want to compete with X11 team in graphics mode switching). I.e. |
1149 main goal of this interface is to maximize the speed of video playback. | |
1150 </para> | |
1151 | |
1152 <itemizedlist spacing="compact"> | |
1153 <title>USAGE</title> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1154 <listitem><para> |
9675 | 1155 You can use standalone video output driver: <option>-vo xvidix</option>. |
14318 | 1156 This driver was developed as X11's front end to VIDIX technology. It |
11497 | 1157 requires X server and can work only under X server. Note that, as it directly |
9675 | 1158 accesses the hardware and circumvents the X driver, pixmaps cached in the |
1159 graphics card's memory may be corrupted. You can prevent this by limiting | |
1160 the amount of video memory used by X with the XF86Config option "VideoRam" | |
1161 in the device section. You should set this to the amount of memory installed | |
1162 on your card minus 4MB. If you have less than 8MB of video ram, you can use | |
1163 the option "XaaNoPixmapCache" in the screen section instead. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1164 </para></listitem> |
20862 | 1165 <listitem> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1166 <para> |
11136 | 1167 There is a console VIDIX driver: <option>-vo cvidix</option>. |
11067
2340e006992f
updated Vidix section to reflect newest developments
gabucino
parents:
11065
diff
changeset
|
1168 This requires a working and initialized framebuffer for most cards (or else |
2340e006992f
updated Vidix section to reflect newest developments
gabucino
parents:
11065
diff
changeset
|
1169 you'll just mess up the screen), and you'll have a similar effect as with |
2340e006992f
updated Vidix section to reflect newest developments
gabucino
parents:
11065
diff
changeset
|
1170 <option>-vo mga</option> or <option>-vo fbdev</option>. nVidia cards however |
2340e006992f
updated Vidix section to reflect newest developments
gabucino
parents:
11065
diff
changeset
|
1171 are able to output truly graphical video on a real text console. See the |
11483 | 1172 <link linkend="vidix-nvidia">nvidia_vid</link> section for more information. |
20556 | 1173 To get rid of text on the borders and the blinking cursor, try something like |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1174 </para> |
20555 | 1175 |
1176 <screen>setterm -cursor off > /dev/tty9</screen> | |
1177 | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1178 <para> |
20555 | 1179 (assuming <systemitem>tty9</systemitem> is unused so far) and then |
1180 switch to <systemitem>tty9</systemitem>. | |
1181 On the other hand, <option>-colorkey 0</option> should give you a video | |
1182 running in the "background", though this depends on the colorkey | |
1183 functionality to work right. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1184 </para> |
20862 | 1185 </listitem> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1186 <listitem><para> |
9675 | 1187 You can use VIDIX subdevice which was applied to several video output |
1188 drivers, such as: <option>-vo vesa:vidix</option> | |
1189 (<emphasis role="bold">Linux only</emphasis>) and | |
1190 <option>-vo fbdev:vidix</option>. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1191 </para></listitem> |
9675 | 1192 </itemizedlist> |
1193 | |
1194 <para> | |
1195 Indeed it doesn't matter which video output driver is used with | |
1196 <emphasis role="bold">VIDIX</emphasis>. | |
1197 </para> | |
1198 | |
1199 <itemizedlist spacing="compact"> | |
1200 <title>REQUIREMENTS</title> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1201 <listitem><para> |
11067
2340e006992f
updated Vidix section to reflect newest developments
gabucino
parents:
11065
diff
changeset
|
1202 Video card should be in graphics mode (except nVidia cards with the |
2340e006992f
updated Vidix section to reflect newest developments
gabucino
parents:
11065
diff
changeset
|
1203 <option>-vo cvidix</option> output driver). |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1204 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1205 <listitem><para> |
9675 | 1206 <application>MPlayer</application>'s video output driver should know |
1207 active video mode and be able to tell to VIDIX subdevice some video | |
1208 characteristics of server. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
1209 </para></listitem> |
9675 | 1210 </itemizedlist> |
1211 | |
21521 | 1212 <formalpara><title>USAGE METHODS</title> |
9675 | 1213 <para> |
10111 | 1214 When VIDIX is used as <emphasis role="bold">subdevice</emphasis> (<option>-vo |
9675 | 1215 vesa:vidix</option>) then video mode configuration is performed by video |
10111 | 1216 output device (<emphasis role="bold">vo_server</emphasis> in short). Therefore you can |
9675 | 1217 pass into command line of <application>MPlayer</application> the same keys |
1218 as for vo_server. In addition it understands <option>-double</option> key | |
1219 as globally visible parameter. (I recommend using this key with VIDIX at | |
11136 | 1220 least for ATI's card). As for <option>-vo xvidix</option>, currently it |
9675 | 1221 recognizes the following options: <option>-fs -zoom -x -y -double</option>. |
1222 </para> | |
1223 </formalpara> | |
20862 | 1224 |
9675 | 1225 <para> |
1226 Also you can specify VIDIX's driver directly as third subargument in | |
1227 command line: | |
21521 | 1228 <screen> |
1229 mplayer -vo xvidix:mga_vid.so -fs -zoom -double <replaceable>file.avi</replaceable> | |
1230 </screen> | |
9675 | 1231 or |
21521 | 1232 <screen> |
1233 mplayer -vo vesa:vidix:radeon_vid.so -fs -zoom -double -bpp 32 <replaceable>file.avi</replaceable> | |
1234 </screen> | |
9675 | 1235 But it's dangerous, and you shouldn't do that. In this case given driver |
1236 will be forced and result is unpredictable (it may | |
1237 <emphasis role="bold">freeze</emphasis> your computer). You should do that | |
1238 ONLY if you are absolutely sure it will work, and | |
1239 <application>MPlayer</application> doesn't do it automatically. Please tell | |
1240 about it to the developers. The right way is to use VIDIX without arguments | |
1241 to enable driver autodetection. | |
1242 </para> | |
1243 | |
27010
ef48c2f8d4c5
Make a section out of the svgalib_helper paragraph.
diego
parents:
26993
diff
changeset
|
1244 |
ef48c2f8d4c5
Make a section out of the svgalib_helper paragraph.
diego
parents:
26993
diff
changeset
|
1245 <sect2 id="svgalib_helper"> |
ef48c2f8d4c5
Make a section out of the svgalib_helper paragraph.
diego
parents:
26993
diff
changeset
|
1246 <title>svgalib_helper</title> |
ef48c2f8d4c5
Make a section out of the svgalib_helper paragraph.
diego
parents:
26993
diff
changeset
|
1247 |
9675 | 1248 <para> |
1249 Since VIDIX requires direct hardware access you can either run it as root | |
1250 or set the SUID bit on the <application>MPlayer</application> binary | |
10111 | 1251 (<emphasis role="bold">Warning: This is a security risk!</emphasis>). |
27736 | 1252 Alternatively, you can use a special kernel module, like this: |
9675 | 1253 </para> |
1254 | |
1255 <procedure> | |
1256 <step><para> | |
21521 | 1257 Download the |
1258 <ulink url="http://www.arava.co.il/matan/svgalib/">development version</ulink> | |
27736 | 1259 of svgalib (1.9.x). |
20862 | 1260 </para></step> |
9675 | 1261 <step><para> |
21521 | 1262 Compile the module in the |
1263 <filename class="directory">svgalib_helper</filename> directory (it can be | |
1264 found inside the | |
1265 <filename class="directory">svgalib-1.9.17/kernel/</filename> directory if | |
1266 you've downloaded the source from the svgalib site) and insmod it. | |
20862 | 1267 </para></step> |
9675 | 1268 <step><para> |
21521 | 1269 To create the necessary devices in the |
1270 <filename class="directory">/dev</filename> directory, do a | |
1271 <screen>make device</screen> in the | |
1272 <filename class="directory">svgalib_helper</filename> dir, as root. | |
20862 | 1273 </para></step> |
11022 | 1274 <step><para> |
26993 | 1275 Then run <filename>configure</filename> again and pass the parameter |
1276 <option>--enable-svgalib_helper</option> as well as | |
27736 | 1277 <option>--with-extraincdir=<replaceable>/path/to/svgalib_helper/sources/</replaceable>kernel/svgalib_helper</option>, |
1278 where <replaceable>/path/to/svgalib_helper/sources/</replaceable> has to be | |
26993 | 1279 adjusted to wherever you extracted svgalib_helper sources. |
20862 | 1280 </para></step> |
9675 | 1281 <step><para> |
23253 | 1282 Recompile. |
20862 | 1283 </para></step> |
9675 | 1284 </procedure> |
27010
ef48c2f8d4c5
Make a section out of the svgalib_helper paragraph.
diego
parents:
26993
diff
changeset
|
1285 </sect2> |
9675 | 1286 |
20862 | 1287 |
22836 | 1288 <sect2 id="vidix-ati"> |
9675 | 1289 <title>ATI cards</title> |
20862 | 1290 |
9675 | 1291 <para> |
1292 Currently most ATI cards are supported natively, from Mach64 to the | |
1293 newest Radeons. | |
1294 </para> | |
1295 | |
1296 <para> | |
1297 There are two compiled binaries: <filename>radeon_vid</filename> for Radeon and | |
1298 <filename>rage128_vid</filename> for Rage 128 cards. You may force one or let | |
1299 the VIDIX system autoprobe all available drivers. | |
1300 </para> | |
22836 | 1301 </sect2> |
9675 | 1302 |
20862 | 1303 |
22836 | 1304 <sect2 id="vidix-mga"> |
9675 | 1305 <title>Matrox cards</title> |
20862 | 1306 |
9675 | 1307 <para> |
11497 | 1308 Matrox G200, G400, G450 and G550 have been reported to work. |
9675 | 1309 </para> |
1310 | |
1311 <para> | |
1312 The driver supports video equalizers and should be nearly as fast as the | |
1313 <link linkend="mga_vid">Matrox framebuffer</link> | |
1314 </para> | |
22836 | 1315 </sect2> |
9675 | 1316 |
20862 | 1317 |
22836 | 1318 <sect2 id="vidix-trident"> |
9675 | 1319 <title>Trident cards</title> |
20862 | 1320 |
9675 | 1321 <para> |
1322 There is a driver available for the Trident Cyberblade/i1 chipset, which | |
1323 can be found on VIA Epia motherboards. | |
1324 </para> | |
1325 | |
1326 <para> | |
11079
d4df1e5e5e49
the author's homepage points to us as the latest driver's source, so we
gabucino
parents:
11067
diff
changeset
|
1327 The driver was written and is maintained by |
20857 | 1328 <ulink url="http://www.blackfiveservices.co.uk/EPIAVidix.shtml">Alastair M. Robinson</ulink>. |
9675 | 1329 </para> |
22836 | 1330 </sect2> |
9675 | 1331 |
20862 | 1332 |
22836 | 1333 <sect2 id="vidix-3dlabs"> |
9675 | 1334 <title>3DLabs cards</title> |
20862 | 1335 |
9675 | 1336 <para> |
1337 Although there is a driver for the 3DLabs GLINT R3 and Permedia3 chips, no one | |
1338 has tested it, so reports are welcome. | |
1339 </para> | |
22836 | 1340 </sect2> |
11040 | 1341 |
20862 | 1342 |
22836 | 1343 <sect2 id="vidix-nvidia"> |
11040 | 1344 <title>nVidia cards</title> |
11065 | 1345 |
11040 | 1346 <para> |
21521 | 1347 An unique feature of the nvidia_vid driver is its ability to display video on |
1348 <emphasis role="bold">plain, pure, text-only console</emphasis> - with no | |
1349 framebuffer or X magic whatsoever. For this purpose, we'll have to use the | |
1350 <option>cvidix</option> video output, as the following example shows: | |
1351 <screen>mplayer -vo cvidix <replaceable>example.avi</replaceable></screen> | |
11040 | 1352 </para> |
22836 | 1353 </sect2> |
11040 | 1354 |
1355 | |
22836 | 1356 <sect2 id="vidix-sis"> |
11040 | 1357 <title>SiS cards</title> |
20862 | 1358 |
11040 | 1359 <para> |
1360 This is very experimental code, just like nvidia_vid. | |
1361 </para> | |
1362 | |
1363 <para> | |
12815 | 1364 It's been tested on SiS 650/651/740 (the most common chipsets used in the |
11040 | 1365 SiS versions of the "Shuttle XPC" barebones boxes out there) |
1366 </para> | |
1367 | |
1368 <para> | |
1369 Reports awaited! | |
1370 </para> | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1371 </sect2> |
22836 | 1372 </sect1> |
9675 | 1373 |
20862 | 1374 <!-- ********** --> |
1375 | |
22836 | 1376 <sect1 id="directfb"> |
9675 | 1377 <title>DirectFB</title> |
20862 | 1378 |
9675 | 1379 <blockquote><para> |
21596 | 1380 "DirectFB is a graphics library which was designed with embedded systems |
9675 | 1381 in mind. It offers maximum hardware accelerated performance at a minimum |
21596 | 1382 of resource usage and overhead." - quoted from |
21521 | 1383 <ulink url="http://www.directfb.org"/> |
9675 | 1384 </para></blockquote> |
1385 | |
1386 <para>I'll exclude DirectFB features from this section.</para> | |
1387 | |
1388 <para> | |
21596 | 1389 Though <application>MPlayer</application> is not supported as a "video |
1390 provider" in DirectFB, this output driver will enable video playback | |
21521 | 1391 through DirectFB. It will - of course - be accelerated, on my Matrox G400 |
1392 DirectFB's speed was the same as XVideo. | |
9675 | 1393 </para> |
1394 | |
1395 <para> | |
21521 | 1396 Always try to use the newest version of DirectFB. You can use DirectFB options |
1397 on the command line, using the <option>-dfbopts</option> option. Layer | |
1398 selection can be done by the subdevice method, e.g.: | |
1399 <option>-vo directfb:2</option> (layer -1 is default: autodetect) | |
9675 | 1400 </para> |
22836 | 1401 </sect1> |
9675 | 1402 |
20862 | 1403 <!-- ********** --> |
1404 | |
22836 | 1405 <sect1 id="dfbmga"> |
9675 | 1406 <title>DirectFB/Matrox (dfbmga)</title> |
20862 | 1407 |
9675 | 1408 <para> |
21521 | 1409 Please read the <link linkend="directfb">main DirectFB</link> section for |
1410 general information. | |
9675 | 1411 </para> |
1412 | |
1413 <para> | |
11824
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1414 This video output driver will enable CRTC2 (on the second head) on Matrox |
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1415 G400/G450/G550 cards, displaying video |
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1416 <emphasis role="bold">independent</emphasis> of the first head. |
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1417 </para> |
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1418 |
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1419 <para> |
12815 | 1420 Ville Syrjala's has a |
11824
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1421 <ulink url="http://www.sci.fi/~syrjala/directfb/Matrox_TV-out_README.txt">README</ulink> |
12815 | 1422 and a |
14649 | 1423 <ulink url="http://www.sci.fi/~syrjala/directfb/matrox-tv-out-howto">HOWTO</ulink> |
11824
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1424 on his homepage that explain how to make DirectFB TV output run on Matrox cards. |
9675 | 1425 </para> |
1426 | |
1427 <note><para> | |
11824
ce44fb6eb15c
Our DirectFB documentation is dated, the current version is now linked to
diego
parents:
11822
diff
changeset
|
1428 the first DirectFB version with which we could get this working was |
13490 | 1429 0.9.17 (it's buggy, needs that <systemitem>surfacemanager</systemitem> |
1430 patch from the URL above). Porting the CRTC2 code to | |
1431 <link linkend="mga_vid">mga_vid</link> has been planned for years, | |
1432 <ulink url="../../tech/patches.txt">patches</ulink> are welcome. | |
9675 | 1433 </para></note> |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1434 </sect1> |
9675 | 1435 |
20862 | 1436 |
1437 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
1438 | |
1439 | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1440 <sect1 id="mpeg_decoders"> |
9675 | 1441 <title>MPEG decoders</title> |
1442 | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1443 <sect2 id="dvb"> |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1444 <title>DVB output and input</title> |
20862 | 1445 |
9675 | 1446 <para> |
1447 <application>MPlayer</application> supports cards with the Siemens DVB chipset | |
1448 from vendors like Siemens, Technotrend, Galaxis or Hauppauge. The latest DVB | |
21521 | 1449 drivers are available from the |
1450 <ulink url="http://www.linuxtv.org">Linux TV site</ulink>. | |
9675 | 1451 If you want to do software transcoding you should have at least a 1GHz CPU. |
1452 </para> | |
1453 | |
1454 <para> | |
1455 Configure should detect your DVB card. If it did not, force detection with | |
21521 | 1456 <screen>./configure --enable-dvb</screen> |
1457 Then compile and install as usual.</para> | |
9675 | 1458 |
21521 | 1459 <formalpara><title>USAGE</title> |
9675 | 1460 <para> |
22183 | 1461 Hardware decoding of streams containing MPEG-1/2 video and/or MPEG audio can be done with this |
21521 | 1462 command: |
1463 <screen> | |
1464 mplayer -ao mpegpes -vo mpegpes <replaceable>file.mpg|vob</replaceable> | |
1465 </screen> | |
9675 | 1466 </para> |
1467 </formalpara> | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1468 |
11713 | 1469 <para> |
22183 | 1470 Decoding of any other type of video stream requires transcoding to MPEG-1, thus it's slow |
1471 and may not be worth the trouble, especially if your computer is slow. | |
1472 It can be achieved using a command like this: | |
21521 | 1473 <screen> |
11713 | 1474 mplayer -ao mpegpes -vo mpegpes <replaceable>yourfile.ext</replaceable> |
1475 mplayer -ao mpegpes -vo mpegpes -vf expand <replaceable>yourfile.ext</replaceable> | |
9675 | 1476 </screen></para> |
1477 | |
1478 <para> | |
1479 Note that DVB cards only support heights 288 and 576 for PAL or 240 and 480 for | |
21521 | 1480 NTSC. You <emphasis role="bold">must</emphasis> rescale for other heights by |
1481 adding <option>scale=width:height</option> with the width and height you want | |
1482 to the <option>-vf</option> option. DVB cards accept various widths, like 720, | |
1483 704, 640, 512, 480, 352 etc. and do hardware scaling in horizontal direction, | |
1484 so you do not need to scale horizontally in most cases. | |
1485 For a 512x384 (aspect 4:3) MPEG-4 (DivX) try: | |
1486 <screen>mplayer -ao mpegpes -vo mpegpes -vf scale=512:576</screen> | |
9675 | 1487 </para> |
1488 | |
11713 | 1489 <para> |
21521 | 1490 If you have a widescreen movie and you do not want to scale it to full height, |
1491 you can use the <option>expand=w:h</option> filter to add black bands. To view a | |
1492 640x384 MPEG-4 (DivX), try: | |
1493 <screen> | |
1494 mplayer -ao mpegpes -vo mpegpes -vf expand=640:576 <replaceable>file.avi</replaceable> | |
11713 | 1495 </screen> |
1496 </para> | |
9675 | 1497 |
13961
2946cbf097b5
DivX is MPEG4, so let's call it MPEG4 to avoid confusion.
diego
parents:
13912
diff
changeset
|
1498 <para> |
14024 | 1499 If your CPU is too slow for a full size 720x576 MPEG-4 (DivX), try downscaling: |
21521 | 1500 <screen> |
1501 mplayer -ao mpegpes -vo mpegpes -vf scale=352:576 <replaceable>file.avi</replaceable> | |
11713 | 1502 </screen> |
1503 </para> | |
9675 | 1504 |
21521 | 1505 <para>If speed does not improve, try vertical downscaling, too: |
1506 <screen> | |
1507 mplayer -ao mpegpes -vo mpegpes -vf scale=352:288 <replaceable>file.avi</replaceable> | |
11713 | 1508 </screen> |
1509 </para> | |
9675 | 1510 |
1511 <para> | |
1512 For OSD and subtitles use the OSD feature of the expand filter. So, instead of | |
1513 <option>expand=w:h</option> or <option>expand=w:h:x:y</option>, use | |
1514 <option>expand=w:h:x:y:1</option> (the 5th parameter <option>:1</option> | |
1515 at the end will enable OSD rendering). You may want to move the image up a bit | |
21521 | 1516 to get a bigger black zone for subtitles. You may also want to move subtitles |
1517 up, if they are outside your TV screen, use the | |
1518 <option>-subpos <0-100></option> | |
9675 | 1519 option to adjust this (<option>-subpos 80</option> is a good choice). |
1520 </para> | |
1521 | |
1522 <para> | |
1523 In order to play non-25fps movies on a PAL TV or with a slow CPU, add the | |
1524 <option>-framedrop</option> option. | |
1525 </para> | |
1526 | |
1527 <para> | |
14024 | 1528 To keep the aspect ratio of MPEG-4 (DivX) files and get the optimal scaling |
9675 | 1529 parameters (hardware horizontal scaling and software vertical scaling |
1530 while keeping the right aspect ratio), use the new dvbscale filter: | |
21521 | 1531 <screen> |
10682 | 1532 for a 4:3 TV: -vf dvbscale,scale=-1:0,expand=-1:576:-1:-1:1 |
1533 for a 16:9 TV: -vf dvbscale=1024,scale=-1:0,expand=-1:576:-1:-1:1 | |
21521 | 1534 </screen> |
1535 </para> | |
9675 | 1536 |
21521 | 1537 <formalpara><title>Digital TV (DVB input module)</title> |
11888 | 1538 <para>You can use your DVB card for watching Digital TV.</para> |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1539 </formalpara> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1540 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1541 <para> |
21521 | 1542 You should have the programs <command>scan</command> and |
1543 <command>szap/tzap/czap/azap</command> installed; they are all included in | |
1544 the drivers package. | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1545 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1546 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1547 <para> |
21521 | 1548 Verify that your drivers are working properly with a program such as |
1549 <ulink url="http://sf.net/projects/dvbtools/"><command>dvbstream</command></ulink> | |
1550 (that is the base of the DVB input module). | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1551 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1552 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1553 <para> |
21521 | 1554 Now you should compile a <filename>~/.mplayer/channels.conf</filename> |
1555 file, with the syntax accepted by <command>szap/tzap/czap/azap</command>, or | |
1556 have <command>scan</command> compile it for you. | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1557 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1558 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1559 <para> |
26958 | 1560 If you have more than one card type (e.g. Satellite, Terrestrial, Cable and ATSC) |
21521 | 1561 you can save your channels files as |
1562 <filename>~/.mplayer/channels.conf.sat</filename>, | |
1563 <filename>~/.mplayer/channels.conf.ter</filename>, | |
1564 <filename>~/.mplayer/channels.conf.cbl</filename>, | |
1565 and <filename>~/.mplayer/channels.conf.atsc</filename>, | |
1566 respectively, so as to implicitly hint <application>MPlayer</application> | |
1567 to use these files rather than <filename>~/.mplayer/channels.conf</filename>, | |
1568 and you only need to specify which card to use. | |
12188 | 1569 </para> |
1570 | |
1571 <para> | |
24690 | 1572 Make sure that you have <emphasis>only</emphasis> Free to Air |
21521 | 1573 channels in your <filename>channels.conf</filename> file, or |
24689
85f578745278
Documentation follows implementation: Encrytped DVB channels are never
cehoyos
parents:
24160
diff
changeset
|
1574 <application>MPlayer</application> will wait for an unencrypted transmission. |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1575 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1576 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1577 <para> |
21521 | 1578 In your audio and video fields you can use an extended syntax: |
1579 <option>...:pid[+pid]:...</option> (for a maximum of 6 pids each); | |
1580 in this case <application>MPlayer</application> will include in the | |
1581 stream all the indicated pids, plus pid 0 (that contains the PAT). | |
26041
e2bacda9d3c6
warn to always include PMT and PCR pids in channels.conf (dvb)
nicodvb
parents:
26040
diff
changeset
|
1582 You should always include in each row the PMT and PCR pids for the |
e2bacda9d3c6
warn to always include PMT and PCR pids in channels.conf (dvb)
nicodvb
parents:
26040
diff
changeset
|
1583 corresponding channel (if you know them). |
22384
989613a9a15b
Explain how to select all DVB channels on a frequency.
reimar
parents:
22183
diff
changeset
|
1584 You can also specify 8192, this will select all pids on this frequency |
989613a9a15b
Explain how to select all DVB channels on a frequency.
reimar
parents:
22183
diff
changeset
|
1585 and you can then switch between the programs with TAB. |
989613a9a15b
Explain how to select all DVB channels on a frequency.
reimar
parents:
22183
diff
changeset
|
1586 This might need more bandwidth, though cheap cards always transfer all |
989613a9a15b
Explain how to select all DVB channels on a frequency.
reimar
parents:
22183
diff
changeset
|
1587 channels at least to the kernel so it does not make much of a difference |
989613a9a15b
Explain how to select all DVB channels on a frequency.
reimar
parents:
22183
diff
changeset
|
1588 for these. |
21521 | 1589 Other possible uses are: televideo pid, second audio track, etc. |
19601 | 1590 </para> |
12814 | 1591 |
1592 <para> | |
21521 | 1593 If <application>MPlayer</application> complains frequently about |
1594 <screen>Too many video/audio packets in the buffer</screen> or | |
1595 if you notice a growing desynchronization between audio and | |
26041
e2bacda9d3c6
warn to always include PMT and PCR pids in channels.conf (dvb)
nicodvb
parents:
26040
diff
changeset
|
1596 video verify the presence of the PCR pid in your stream |
e2bacda9d3c6
warn to always include PMT and PCR pids in channels.conf (dvb)
nicodvb
parents:
26040
diff
changeset
|
1597 (needed to comply with the buffering model of the transmitter) |
e2bacda9d3c6
warn to always include PMT and PCR pids in channels.conf (dvb)
nicodvb
parents:
26040
diff
changeset
|
1598 and/or try to use the libavformat MPEG-TS demuxer by adding |
21521 | 1599 <option>-demuxer lavf -lavfdopts probesize=128</option> |
1600 to your command line. | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1601 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1602 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1603 <para> |
21521 | 1604 To show the first of the channels present in your list, run |
1605 <screen>mplayer dvb://</screen> | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1606 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1607 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1608 <para> |
21521 | 1609 If you want to watch a specific channel, such as R1, run |
1610 <screen>mplayer dvb://<replaceable>R1</replaceable></screen> | |
12310
da00c08d8279
DVB now supports multiple cards, patch by Nico Sabbi.
diego
parents:
12216
diff
changeset
|
1611 </para> |
da00c08d8279
DVB now supports multiple cards, patch by Nico Sabbi.
diego
parents:
12216
diff
changeset
|
1612 |
21521 | 1613 <para> |
1614 If you have more than one card you also need to specify the number of the card | |
1615 where the channel is visible (e.g. 2) with the syntax: | |
1616 <screen>mplayer dvb://<replaceable>2@R1</replaceable></screen> | |
1617 </para> | |
12310
da00c08d8279
DVB now supports multiple cards, patch by Nico Sabbi.
diego
parents:
12216
diff
changeset
|
1618 |
da00c08d8279
DVB now supports multiple cards, patch by Nico Sabbi.
diego
parents:
12216
diff
changeset
|
1619 <para> |
21521 | 1620 To change channels press the <keycap>h</keycap> (next) and |
1621 <keycap>k</keycap> (previous) keys, or use the | |
1622 <link linkend="osdmenu">OSD menu</link>. | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1623 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1624 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1625 <para> |
24989 | 1626 To temporarily disable the audio or the video stream copy the |
1627 following to <filename>~/.mplayer/input.conf</filename>: | |
24983
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1628 <screen> |
24989 | 1629 % set_property switch_video -2 |
24988 | 1630 & step_property switch_video |
24989 | 1631 ? set_property switch_audio -2 |
24983
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1632 ^ step_property switch_audio |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1633 </screen> |
24989 | 1634 (Overriding the action keys as preferred.) When pressing the key |
24983
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1635 corresponding to switch_x -2 the associated stream will be closed; |
24989 | 1636 when pressing the key corresponding to step_x the stream will be reopened. |
1637 Notice that this switching mechanism will not work as expected when there | |
24983
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1638 are multiple audio and video streams in the multiplex. |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1639 </para> |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1640 |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1641 <para> |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1642 During playback (not during recording), in order to prevent stuttering |
24989 | 1643 and error messages such as 'Your system is too slow' it is advisable to add |
24983
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1644 <screen> |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1645 -mc 10 -speed 0.97 -af scaletempo |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1646 </screen> |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1647 to your command line, adjusting the scaletempo parameters as preferred. |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1648 </para> |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1649 |
da81c5786907
a couple of tricks to improve playback resistance and usability of dvb streams
nicodvb
parents:
24690
diff
changeset
|
1650 <para> |
21521 | 1651 If your <filename>~/.mplayer/menu.conf</filename> contains a |
1652 <literal><dvbsel></literal> entry, such as the one in the example | |
1653 file <filename>etc/dvb-menu.conf</filename> (that you can use to overwrite | |
1654 <filename>~/.mplayer/menu.conf</filename>), the main menu will show a | |
1655 sub-menu entry that will permit you to choose one of the channels present | |
1656 in your <filename>channels.conf</filename>, possibly preceded by a menu | |
1657 with the list of cards available if more than one is usable by | |
1658 <application>MPlayer</application>. | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1659 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1660 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1661 <para> |
21521 | 1662 If you want to save a program to disk you can use |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1663 <screen> |
21521 | 1664 mplayer -dumpfile <replaceable>r1.ts</replaceable> -dumpstream dvb://<replaceable>R1</replaceable> |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1665 </screen> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1666 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1667 |
21521 | 1668 <para> |
1669 If you want to record it in a different format (re-encoding it) instead | |
1670 you can run a command such as | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1671 <screen> |
21521 | 1672 mencoder -o <replaceable>r1.avi</replaceable> -ovc xvid -xvidencopts bitrate=800 \ |
1673 -oac mp3lame -lameopts cbr:br=128 -pp=ci dvb://<replaceable>R1</replaceable> | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1674 </screen> |
21521 | 1675 </para> |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1676 |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1677 <para> |
21521 | 1678 Read the man page for a list of options that you can pass to the |
1679 DVB input module. | |
11358
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1680 </para> |
7d120a00fcf7
DVB section expanded based on a patch by Nico Sabbi that was committed to
diego
parents:
11287
diff
changeset
|
1681 |
21521 | 1682 <formalpara><title>FUTURE</title> |
9675 | 1683 <para> |
1684 If you have questions or want to hear feature announcements and take part in | |
1685 discussions on this subject, join our | |
19709 | 1686 <ulink url="http://lists.mplayerhq.hu/mailman/listinfo/mplayer-dvb">MPlayer-DVB</ulink> |
9675 | 1687 mailing list. Please remember that the list language is English. |
1688 </para> | |
1689 </formalpara> | |
1690 | |
1691 <para> | |
1692 In the future you may expect the ability to display OSD and subtitles using | |
26040 | 1693 the native OSD feature of DVB cards. |
9675 | 1694 </para> |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1695 </sect2> |
9675 | 1696 |
20862 | 1697 <!-- ********** --> |
1698 | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1699 <sect2 id="dxr2"> |
9675 | 1700 <title>DXR2</title> |
20862 | 1701 |
21521 | 1702 <para> |
1703 <application>MPlayer</application> supports hardware accelerated playback | |
1704 with the Creative DXR2 card. | |
1705 </para> | |
28966 | 1706 |
9675 | 1707 <para> |
1708 First of all you will need properly installed DXR2 drivers. You can find | |
1709 the drivers and installation instructions at the | |
13977 | 1710 <ulink url="http://dxr2.sf.net/">DXR2 Resource Center</ulink> site. |
9675 | 1711 </para> |
1712 | |
21521 | 1713 <variablelist><title>USAGE</title> |
9675 | 1714 <varlistentry> |
21521 | 1715 <term><option>-vo dxr2</option></term> |
1716 <listitem><para>Enable TV output.</para></listitem> | |
9675 | 1717 </varlistentry> |
1718 <varlistentry> | |
21521 | 1719 <term><option>-vo dxr2:x11</option> or <option>-vo dxr2:xv</option></term> |
1720 <listitem><para>Enable Overlay output in X11.</para></listitem> | |
9675 | 1721 </varlistentry> |
1722 <varlistentry> | |
21521 | 1723 <term><option>-dxr2 <option1:option2:...></option></term> |
1724 <listitem><para> | |
1725 This option is used to control the DXR2 driver. | |
1726 </para></listitem> | |
9675 | 1727 </varlistentry> |
1728 </variablelist> | |
1729 | |
1730 <para> | |
1731 The overlay chipset used on the DXR2 is of pretty bad quality but the | |
1732 default settings should work for everybody. The OSD may be usable with the | |
1733 overlay (not on TV) by drawing it in the colorkey. With the default colorkey | |
1734 settings you may get variable results, usually you will see the colorkey | |
1735 around the characters or some other funny effect. But if you properly adjust | |
1736 the colorkey settings you should be able to get acceptable results. | |
1737 </para> | |
1738 | |
11731 | 1739 <para>Please see the man page for available options.</para> |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1740 </sect2> |
9675 | 1741 |
20862 | 1742 <!-- ********** --> |
1743 | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1744 <sect2 id="dxr3"> |
9675 | 1745 <title>DXR3/Hollywood+</title> |
20862 | 1746 |
9675 | 1747 <para> |
1748 <application>MPlayer</application> supports hardware accelerated playback | |
1749 with the Creative DXR3 and Sigma Designs Hollywood Plus cards. These cards | |
1750 both use the em8300 MPEG decoder chip from Sigma Designs. | |
1751 </para> | |
1752 | |
1753 <para> | |
1754 First of all you will need properly installed DXR3/H+ drivers, version 0.12.0 | |
1755 or later. You can find the drivers and installation instructions at the | |
13977 | 1756 <ulink url="http://dxr3.sf.net/">DXR3 & Hollywood Plus for Linux</ulink> |
10111 | 1757 site. <filename>configure</filename> should detect your card automatically, |
1758 compilation should go without problems. | |
9675 | 1759 </para> |
1760 | |
1761 <!-- FIXME: find a more clear presentation --> | |
1762 <variablelist> | |
1763 <title>USAGE</title> | |
1764 <varlistentry> | |
10111 | 1765 <term><option>-vo dxr3:prebuf:sync:norm=x:<replaceable>device</replaceable></option></term> |
9675 | 1766 <listitem><para> |
25744 | 1767 <option>overlay</option> activates the overlay instead of TV-out. It requires |
9675 | 1768 that you have a properly configured overlay setup to work right. The easiest |
1769 way to configure the overlay is to first run autocal. Then run mplayer with | |
1770 dxr3 output and without overlay turned on, run dxr3view. In dxr3view you can | |
1771 tweak the overlay settings and see the effects in realtime, perhaps this feature | |
11540 | 1772 will be supported by the <application>MPlayer</application> GUI in the future. |
1773 When overlay is properly set up you will no longer need to use dxr3view. | |
9675 | 1774 <option>prebuf</option> turns on prebuffering. Prebuffering is a feature of the |
21521 | 1775 em8300 chip that enables it to hold more than one frame of video at a time. |
1776 This means that when you are running with prebuffering | |
1777 <application>MPlayer</application> will try to keep the video buffer filled | |
1778 with data at all times. | |
1779 If you are on a slow machine <application>MPlayer</application> will probably | |
1780 use close to, or precisely 100% of CPU. | |
1781 This is especially common if you play pure MPEG streams | |
11540 | 1782 (like DVDs, SVCDs a.s.o.) since <application>MPlayer</application> will not have |
1783 to reencode it to MPEG it will fill the buffer very fast. | |
9675 | 1784 With prebuffering video playback is <emphasis role="bold">much</emphasis> |
1785 less sensitive to other programs hogging the CPU, it will not drop frames unless | |
1786 applications hog the CPU for a long time. | |
1787 When running without prebuffering the em8300 is much more sensitive to CPU load, | |
12349 | 1788 so it is highly suggested that you turn on <application>MPlayer</application>'s |
11540 | 1789 <option>-framedrop</option> option to avoid further loss of sync. |
9675 | 1790 <option>sync</option> will turn on the new sync-engine. This is currently an |
21521 | 1791 experimental feature. With the sync feature turned on the em8300's internal |
1792 clock will be monitored at all times, if it starts to deviate from | |
1793 <application>MPlayer</application>'s clock it will be reset causing the em8300 | |
1794 to drop any frames that are lagging behind. | |
9675 | 1795 <option>norm=x</option> will set the TV norm of the DXR3 card without the need |
1796 for external tools like em8300setup. Valid norms are 5 = NTSC, 4 = PAL-60, | |
1797 3 = PAL. Special norms are 2 (auto-adjust using PAL/PAL-60) and 1 (auto-adjust | |
1798 using PAL/NTSC) because they decide which norm to use by looking at the frame | |
1799 rate of the movie. norm = 0 (default) does not change the current norm. | |
21521 | 1800 <option><replaceable>device</replaceable></option> = device number to use if |
1801 you have more than one em8300 card. Any of these options may be left out. | |
1802 <option>:prebuf:sync</option> seems to work great when playing MPEG-4 (DivX) | |
1803 movies. People have reported problems using the prebuf option when playing | |
1804 MPEG-1/2 files. | |
1805 You might want to try running without any options first, if you have sync | |
1806 problems, or DVD subtitle problems, give <option>:sync</option> a try. | |
9675 | 1807 </para></listitem> |
1808 </varlistentry> | |
1809 | |
1810 <varlistentry> | |
21521 | 1811 <term><option>-ao oss:/dev/em8300_ma-<replaceable>X</replaceable></option></term> |
1812 <listitem><para> | |
1813 For audio output, where <replaceable>X</replaceable> is the device number | |
1814 (0 if one card). | |
1815 </para></listitem> | |
1816 </varlistentry> | |
1817 | |
1818 <varlistentry> | |
1819 <term><option>-af resample=<replaceable>xxxxx</replaceable></option></term> | |
1820 <listitem><para> | |
1821 The em8300 cannot play back samplerates lower than 44100Hz. If the sample | |
1822 rate is below 44100Hz select either 44100Hz or 48000Hz depending on which | |
1823 one matches closest. I.e. if the movie uses 22050Hz use 44100Hz as | |
1824 44100 / 2 = 22050, if it is 24000Hz use 48000Hz as 48000 / 2 = 24000 | |
1825 and so on. | |
1826 This does not work with digital audio output (<option>-ac hwac3</option>). | |
1827 </para></listitem> | |
9675 | 1828 </varlistentry> |
1829 | |
1830 <varlistentry> | |
21521 | 1831 <term><option>-vf lavc</option></term> |
1832 <listitem><para> | |
1833 To watch non-MPEG content on the em8300 (i.e. MPEG-4 (DivX) or RealVideo) | |
1834 you have to specify an MPEG-1 video filter such as | |
1835 <systemitem class="library">libavcodec</systemitem> (lavc). | |
1836 See the man page for further info about <option>-vf lavc</option>. | |
1837 Currently there is no way of setting the fps of the em8300 which means that | |
1838 it is fixed to 30000/1001 fps. | |
1839 Because of this it is highly recommended that you use | |
1840 <option>-vf lavc=<replaceable>quality</replaceable>:25</option> | |
1841 especially if you are using prebuffering. Then why 25 and not 30000/1001? | |
1842 Well, the thing is that when you use 30000/1001 the picture becomes a bit | |
1843 jumpy. | |
1844 The reason for this is unknown to us. | |
1845 If you set it to somewhere between 25 and 27 the picture becomes stable. | |
1846 For now all we can do is accept this for a fact. | |
1847 </para></listitem> | |
9675 | 1848 </varlistentry> |
1849 | |
1850 <varlistentry> | |
21521 | 1851 <term><option>-vf expand=-1:-1:-1:-1:1</option></term> |
1852 <listitem><para> | |
1853 Although the DXR3 driver can put some OSD onto the MPEG-1/2/4 video, it has | |
1854 much lower quality than <application>MPlayer</application>'s traditional OSD, | |
1855 and has several refresh problems as well. The command line above will firstly | |
1856 convert the input video to MPEG-4 (this is mandatory, sorry), then apply an | |
1857 expand filter which won't expand anything (-1: default), but apply the normal | |
1858 OSD onto the picture (that's what the "1" at the end does). | |
1859 </para></listitem> | |
1860 </varlistentry> | |
1861 | |
1862 <varlistentry> | |
1863 <term><option>-ac hwac3</option></term> | |
1864 <listitem><para> | |
24036 | 1865 The em8300 supports playing back AC-3 audio (surround sound) through the |
21521 | 1866 digital audio output of the card. See the <option>-ao oss</option> option |
1867 above, it must be used to specify the DXR3's output instead of a sound card. | |
1868 </para></listitem> | |
9675 | 1869 </varlistentry> |
1870 </variablelist> | |
13912
c66b1514ce5b
Remove pointless devices section, make video and audio top level sections.
diego
parents:
13908
diff
changeset
|
1871 </sect2> |
20862 | 1872 </sect1> |
13912
c66b1514ce5b
Remove pointless devices section, make video and audio top level sections.
diego
parents:
13908
diff
changeset
|
1873 |
20862 | 1874 |
1875 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
1876 | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1877 |
31752 | 1878 <sect1 id="zr"> |
9675 | 1879 <title>Zr</title> |
1880 | |
1881 <para> | |
1882 This is a display-driver (<option>-vo zr</option>) for a number of MJPEG | |
1883 capture/playback cards (tested for DC10+ and Buz, and it should work for the | |
1884 LML33, the DC10). The driver works by encoding the frame to JPEG and then | |
11822
359eaf957bf1
Add <systemitem class="library"> tags to libavcodec and a few others.
diego
parents:
11738
diff
changeset
|
1885 sending it to the card. For the JPEG encoding |
359eaf957bf1
Add <systemitem class="library"> tags to libavcodec and a few others.
diego
parents:
11738
diff
changeset
|
1886 <systemitem class="library">libavcodec</systemitem> |
9675 | 1887 is used, and required. With the special <emphasis>cinerama</emphasis> mode, |
1888 you can watch movies in true wide screen provided that you have two beamers | |
1889 and two MJPEG cards. Depending on resolution and quality settings, this driver | |
1890 may require a lot of CPU power, remember to specify <option>-framedrop</option> | |
1891 if your machine is too slow. Note: My AMD K6-2 350MHz is (with | |
1892 <option>-framedrop</option>) quite adequate for watching VCD sized material and | |
1893 downscaled movies. | |
1894 </para> | |
1895 | |
1896 <para> | |
1897 This driver talks to the kernel driver available at | |
13977 | 1898 <ulink url="http://mjpeg.sf.net"/>, so |
21521 | 1899 you must get it working first. The presence of an MJPEG card is autodetected by |
1900 the <filename>configure</filename> script, if autodetection fails, force | |
1901 detection with | |
9675 | 1902 <screen>./configure --enable-zr</screen> |
1903 </para> | |
21521 | 1904 |
9675 | 1905 <para> |
1906 The output can be controlled by several options, a long description of the | |
1907 options can be found in the man page, a short list of options can be viewed | |
1908 by running | |
1909 <screen>mplayer -zrhelp</screen> | |
1910 </para> | |
1911 | |
1912 <para> | |
1913 Things like scaling and the OSD (on screen display) are not handled by | |
1914 this driver but can be done using the video filters. For example, suppose | |
1915 that you have a movie with a resolution of 512x272 and you want to view it | |
1916 fullscreen on your DC10+. There are three main possibilities, you may scale | |
1917 the movie to a width of 768, 384 or 192. For performance and quality reasons, | |
1918 I would choose to scale the movie to 384x204 using the fast bilinear software | |
12349 | 1919 scaler. The command line is |
11713 | 1920 <screen> |
1921 mplayer -vo zr -sws 0 -vf scale=384:204 <replaceable>movie.avi</replaceable> | |
1922 </screen> | |
9675 | 1923 </para> |
1924 | |
1925 <para> | |
11214 | 1926 Cropping can be done by the <option>crop</option> filter and by this |
9675 | 1927 driver itself. Suppose that a movie is too wide for display on your Buz and |
1928 that you want to use <option>-zrcrop</option> to make the movie less wide, | |
9784
286ac03ce5c5
Typos, noticed by Roberto Togni <r_togni@libero.it>.
diego
parents:
9683
diff
changeset
|
1929 then you would issue the following command |
11713 | 1930 <screen> |
1931 mplayer -vo zr -zrcrop 720x320+80+0 <replaceable>benhur.avi</replaceable> | |
1932 </screen> | |
9675 | 1933 </para> |
1934 | |
1935 <para> | |
10111 | 1936 if you want to use the <option>crop</option> filter, you would do |
11713 | 1937 <screen> |
1938 mplayer -vo zr -vf crop=720:320:80:0 <replaceable>benhur.avi</replaceable> | |
1939 </screen> | |
9675 | 1940 </para> |
1941 | |
1942 <para> | |
21521 | 1943 Extra occurrences of <option>-zrcrop</option> invoke |
1944 <emphasis>cinerama</emphasis> mode, i.e. you can distribute the movie over | |
26958 | 1945 several TVs or beamers to create a larger screen. |
21521 | 1946 Suppose you have two beamers. The left one is connected to your |
11359 | 1947 Buz at <filename>/dev/video1</filename> and the right one is connected to |
1948 your DC10+ at <filename>/dev/video0</filename>. The movie has a resolution | |
9675 | 1949 of 704x288. Suppose also that you want the right beamer in black and white and |
10975
96cd8d4e98d4
Typos and some confusion noticed by Lukasz frogu Proszek <l_j_p@wp.pl>.
diego
parents:
10971
diff
changeset
|
1950 that the left beamer should have JPEG frames at quality 10, then you would |
9675 | 1951 issue the following command |
1952 <screen> | |
1953 mplayer -vo zr -zrdev /dev/video0 -zrcrop 352x288+352+0 -zrxdoff 0 -zrbw \ | |
21521 | 1954 -zrcrop 352x288+0+0 -zrdev /dev/video1 -zrquality 10 \ |
30990 | 1955 <replaceable>movie.avi</replaceable> |
9675 | 1956 </screen> |
1957 </para> | |
1958 | |
1959 <para> | |
1960 You see that the options appearing before the second <option>-zrcrop</option> | |
1961 only apply to the DC10+ and that the options after the second | |
1962 <option>-zrcrop</option> apply to the Buz. The maximum number of MJPEG cards | |
9784
286ac03ce5c5
Typos, noticed by Roberto Togni <r_togni@libero.it>.
diego
parents:
9683
diff
changeset
|
1963 participating in <emphasis>cinerama</emphasis> is four, so you can build a |
9675 | 1964 2x2 vidiwall. |
1965 </para> | |
1966 | |
1967 <para> | |
10111 | 1968 Finally an important remark: Do not start or stop XawTV on the playback device |
9675 | 1969 during playback, it will crash your computer. It is, however, fine to |
21521 | 1970 <emphasis role="bold">FIRST</emphasis> start XawTV, |
1971 <emphasis role="bold">THEN</emphasis> start <application>MPlayer</application>, | |
1972 wait for <application>MPlayer</application> | |
11540 | 1973 to finish and <emphasis role="bold">THEN</emphasis> stop XawTV. |
9675 | 1974 </para> |
31752 | 1975 </sect1> |
9675 | 1976 |
20862 | 1977 <!-- ********** --> |
1978 | |
31752 | 1979 <sect1 id="blinkenlights"> |
9675 | 1980 <title>Blinkenlights</title> |
20862 | 1981 |
9675 | 1982 <para> |
1983 This driver is capable of playback using the Blinkenlights UDP protocol. If you | |
1984 don't know what <ulink url="http://www.blinkenlights.de/">Blinkenlights</ulink> | |
12401 | 1985 or its successor |
1986 <ulink url="http://www.blinkenlights.de/arcade/">Arcade</ulink> | |
1987 are, find it out. Although this is most probably the least used video output | |
1988 driver, without a doubt it is the coolest <application>MPlayer</application> | |
1989 has to offer. Just watch some of the | |
1990 <ulink url="http://www.blinkenlights.de/video.en.html">Blinkenlights documentation videos</ulink>. | |
1991 On the Arcade video you can see the Blinkenlights output driver in | |
1992 action at 00:07:50. | |
9675 | 1993 </para> |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
1994 </sect1> |
9675 | 1995 |
20862 | 1996 |
1997 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | |
1998 | |
1999 | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2000 <sect1 id="tvout"> |
9675 | 2001 <title>TV-out support</title> |
2002 | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2003 <sect2 id="tvout-mga-g400"> |
9675 | 2004 <title>Matrox G400 cards</title> |
2005 | |
2006 <para> | |
2007 Under Linux you have two methods to get G400 TV out working: | |
2008 </para> | |
2009 | |
2010 <important> | |
2011 <para> | |
2012 for Matrox G450/G550 TV-out instructions, please see the next section! | |
2013 </para> | |
2014 </important> | |
2015 | |
2016 <variablelist> | |
2017 <varlistentry> | |
2018 <term>XFree86</term> | |
21521 | 2019 <listitem> |
2020 <para> | |
12349 | 2021 Using the driver and the HAL module, available from the <ulink |
2022 url="http://www.matrox.com">Matrox site</ulink>. This will give you X | |
9675 | 2023 on the TV. |
21521 | 2024 </para> |
2025 <para> | |
9675 | 2026 <emphasis role="bold">This method doesn't give you accelerated playback</emphasis> |
21521 | 2027 as under Windows! The second head has only YUV framebuffer, the |
2028 <emphasis>BES</emphasis> (Back End Scaler, the YUV scaler on | |
2029 G200/G400/G450/G550 cards) doesn't work on it! The windows driver somehow | |
2030 workarounds this, probably by using the 3D engine to zoom, and the YUV | |
2031 framebuffer to display the zoomed image. If you really want to use X, use | |
2032 the <option>-vo x11 -fs -zoom</option> options, but it will be | |
2033 <emphasis role="bold">SLOW</emphasis>, and has | |
2034 <emphasis role="bold">Macrovision</emphasis> copy protection enabled | |
9675 | 2035 (you can "workaround" Macrovision using this |
26958 | 2036 <ulink url="http://avifile.sf.net/mgamacro.pl">Perl script</ulink>). |
21521 | 2037 </para> |
2038 </listitem> | |
9675 | 2039 </varlistentry> |
2040 <varlistentry> | |
2041 <term>Framebuffer</term> | |
20862 | 2042 <listitem> |
2043 <para> | |
9675 | 2044 Using the <emphasis role="bold">matroxfb modules</emphasis> in the 2.4 |
25744 | 2045 kernels. 2.2 kernels don't have the TV-out feature in them, thus unusable |
26951
3d468a9bb80b
Fix some typos and update the Matrox TV output section. The relevant
diego
parents:
26882
diff
changeset
|
2046 for this. You have to enable ALL matroxfb-specific features during |
21521 | 2047 compilation (except MultiHead), and compile them into |
2048 <emphasis role="bold">modules</emphasis>! | |
26951
3d468a9bb80b
Fix some typos and update the Matrox TV output section. The relevant
diego
parents:
26882
diff
changeset
|
2049 You'll also need to enable I2C and put the tools |
3d468a9bb80b
Fix some typos and update the Matrox TV output section. The relevant
diego
parents:
26882
diff
changeset
|
2050 <application>matroxset</application>, <application>fbset</application> |
3d468a9bb80b
Fix some typos and update the Matrox TV output section. The relevant
diego
parents:
26882
diff
changeset
|
2051 and <application>con2fb</application> in your path. |
9675 | 2052 </para> |
2053 | |
2054 <procedure> | |
2055 <step><para> | |
26951
3d468a9bb80b
Fix some typos and update the Matrox TV output section. The relevant
diego
parents:
26882
diff
changeset
|
2056 Then load the <systemitem>matroxfb_Ti3026, matroxfb_maven, i2c-matroxfb, |
3d468a9bb80b
Fix some typos and update the Matrox TV output section. The relevant
diego
parents:
26882
diff
changeset
|
2057 matroxfb_crtc2</systemitem> modules into your kernel. Your text-mode |
3d468a9bb80b
Fix some typos and update the Matrox TV output section. The relevant
diego
parents:
26882
diff
changeset
|
2058 console will enter into framebuffer mode (no way back!). |
20862 | 2059 </para></step> |
9675 | 2060 <step><para> |
26951
3d468a9bb80b
Fix some typos and update the Matrox TV output section. The relevant
diego
parents:
26882
diff
changeset
|
2061 Next, set up your monitor and TV to your liking using the above tools. |
20862 | 2062 </para></step> |
9675 | 2063 <step><para> |
2064 Yoh. Next task is to make the cursor on tty1 (or whatever) to | |
2065 disappear, and turn off screen blanking. Execute the following | |
2066 commands: | |
12815 | 2067 |
9675 | 2068 <screen> |
2069 echo -e '\033[?25l' | |
2070 setterm -blank 0<!-- | |
2071 --></screen> | |
2072 or | |
2073 <screen> | |
2074 setterm -cursor off | |
2075 setterm -blank 0<!-- | |
2076 --></screen> | |
2077 | |
2078 You possibly want to put the above into a script, and also clear the | |
2079 screen. To turn the cursor back: | |
2080 <screen>echo -e '\033[?25h'</screen> or | |
2081 <screen>setterm -cursor on</screen> | |
20862 | 2082 </para></step> |
9675 | 2083 <step><para> |
2084 Yeah kewl. Start movie playing with | |
2085 <screen> | |
2086 mplayer -vo mga -fs -screenw 640 -screenh 512 <replaceable>filename</replaceable><!-- | |
2087 --></screen> | |
12815 | 2088 |
9675 | 2089 (If you use X, now change to matroxfb with for example |
21720 | 2090 <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>F1</keycap></keycombo>.) |
9675 | 2091 Change <literal>640</literal> and <literal>512</literal> if you set |
2092 the resolution to other... | |
21521 | 2093 </para></step> |
9675 | 2094 <step><para> |
2095 <emphasis role="bold">Enjoy the ultra-fast ultra-featured Matrox TV | |
2096 output (better than Xv)!</emphasis> | |
20862 | 2097 </para></step> |
9675 | 2098 </procedure> |
2099 </listitem> | |
2100 </varlistentry> | |
2101 </variablelist> | |
26952
00a4e88391ff
Move Matrox TV-out cable instructions into their own section.
diego
parents:
26951
diff
changeset
|
2102 </sect2> |
9675 | 2103 |
26952
00a4e88391ff
Move Matrox TV-out cable instructions into their own section.
diego
parents:
26951
diff
changeset
|
2104 <!-- ********** --> |
00a4e88391ff
Move Matrox TV-out cable instructions into their own section.
diego
parents:
26951
diff
changeset
|
2105 |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2106 <sect2 id="tv-out_matrox_g450"> |
9675 | 2107 <title>Matrox G450/G550 cards</title> |
20862 | 2108 |
9675 | 2109 <para> |
2110 TV output support for these cards has only been recently introduced, and is | |
21521 | 2111 not yet in the mainstream kernel. |
2112 Currently the <emphasis role="bold">mga_vid</emphasis> module can't be used | |
2113 AFAIK, because the G450/G550 driver works only in one configuration: the first | |
2114 CRTC chip (with much more features) on the first display (on monitor), | |
2115 and the second CRTC (no <emphasis role="bold">BES</emphasis> - for | |
9675 | 2116 explanation on BES, please see the G400 section above) on TV. So you can only |
21521 | 2117 use <application>MPlayer</application>'s <emphasis>fbdev</emphasis> output |
2118 driver at the present. | |
9675 | 2119 </para> |
2120 | |
2121 <para> | |
2122 The first CRTC can't be routed to the second head currently. The author of the | |
2123 kernel matroxfb driver - Petr Vandrovec - will maybe make support for this, by | |
2124 displaying the first CRTC's output onto both of the heads at once, as currently | |
2125 recommended for G400, see the section above. | |
2126 </para> | |
2127 | |
2128 <para> | |
12349 | 2129 The necessary kernel patch and the detailed HOWTO is downloadable from |
9948 | 2130 <ulink url="http://www.bglug.ca/matrox_tvout/"/> |
9675 | 2131 </para> |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2132 </sect2> |
9675 | 2133 |
20862 | 2134 <!-- ********** --> |
9675 | 2135 |
26953
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2136 <sect2 id="tv-out_matrox_cable"> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2137 <title>Building a Matrox TV-out cable</title> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2138 <para> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2139 No one takes any responsibility, nor guarantee for any damage caused |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2140 by this documentation. |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2141 </para> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2142 |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2143 <formalpara><title>Cable for G400</title> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2144 <para> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2145 The CRTC2 connector's fourth pin is the composite video signal. The |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2146 ground are the sixth, seventh and eighth pins. (info contributed |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2147 from Balázs Rácz) |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2148 </para> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2149 </formalpara> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2150 |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2151 <formalpara><title>Cable for G450</title> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2152 <para> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2153 The CRTC2 connector's first pin is the composite video signal. The |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2154 ground are the fifth, sixth, seventh, and fifteenth (5, 6, 7, 15) |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2155 pins. (info contributed from Balázs Kerekes) |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2156 </para> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2157 </formalpara> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2158 </sect2> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2159 |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2160 <!-- ********** --> |
eb80f13e93c1
Move Matrox TV-out cable section to the end of the Matrox chapter.
diego
parents:
26952
diff
changeset
|
2161 |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2162 <sect2 id="tvout-ati"> |
9675 | 2163 <title>ATI cards</title> |
2164 | |
21521 | 2165 <formalpara><title>PREAMBLE</title> |
9675 | 2166 <para> |
2167 Currently ATI doesn't want to support any of its TV-out chips under Linux, | |
2168 because of their licensed Macrovision technology. | |
2169 </para> | |
2170 </formalpara> | |
2171 | |
2172 <itemizedlist> | |
2173 <title>ATI CARDS TV-OUT STATUS ON LINUX</title> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2174 <listitem><para> |
9675 | 2175 <emphasis role="bold">ATI Mach64</emphasis>: |
12349 | 2176 supported by <ulink url="http://gatos.sf.net">GATOS</ulink>. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2177 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2178 <listitem><para> |
9675 | 2179 <emphasis role="bold">ASIC Radeon VIVO</emphasis>: |
12349 | 2180 supported by <ulink url="http://gatos.sf.net">GATOS</ulink>. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2181 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2182 <listitem><para> |
9675 | 2183 <emphasis role="bold">Radeon</emphasis> and <emphasis role="bold">Rage128</emphasis>: |
2184 supported by <application>MPlayer</application>! | |
2185 Check <link linkend="vesa">VESA driver</link> and | |
2186 <link linkend="vidix">VIDIX</link> sections. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2187 </para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2188 <listitem><para> |
9675 | 2189 <emphasis role="bold">Rage Mobility P/M, Radeon, Rage 128, Mobility M3/M4</emphasis>: |
21521 | 2190 supported by |
2191 <ulink url="http://www.stud.uni-hamburg.de/users/lennart/projects/atitvout/">atitvout</ulink>. | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2192 </para></listitem> |
9675 | 2193 </itemizedlist> |
2194 | |
2195 <para> | |
2196 On other cards, just use the <link linkend="vesa">VESA</link> driver, | |
2197 without VIDIX. Powerful CPU is needed, though. | |
2198 </para> | |
2199 | |
2200 <para> | |
2201 Only thing you need to do - <emphasis role="bold">Have the TV connector | |
2202 plugged in before booting your PC</emphasis> since video BIOS initializes | |
2203 itself only once during POST procedure. | |
2204 </para> | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2205 </sect2> |
9675 | 2206 |
20862 | 2207 <!-- ********** --> |
9675 | 2208 |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2209 <sect2 id="tvout-nvidia"> |
10111 | 2210 <title>nVidia</title> |
20862 | 2211 |
9675 | 2212 <para> |
21521 | 2213 First, you MUST download the closed-source drivers from |
2214 <ulink url="http://nvidia.com"/>. | |
2215 I will not describe the installation and configuration process because it does | |
2216 not cover the scope of this documentation. | |
9675 | 2217 </para> |
2218 | |
2219 <para> | |
2220 After XFree86, XVideo, and 3D acceleration is properly working, edit your | |
2221 card's Device section in the <filename>XF86Config</filename> file, according | |
2222 to the following example (adapt for your card/TV): | |
2223 | |
2224 <programlisting> | |
2225 Section "Device" | |
2226 Identifier "GeForce" | |
2227 VendorName "ASUS" | |
2228 BoardName "nVidia GeForce2/MX 400" | |
2229 Driver "nvidia" | |
2230 #Option "NvAGP" "1" | |
2231 Option "NoLogo" | |
2232 Option "CursorShadow" "on" | |
2233 | |
2234 Option "TwinView" | |
2235 Option "TwinViewOrientation" "Clone" | |
2236 Option "MetaModes" "1024x768,640x480" | |
2237 Option "ConnectedMonitor" "CRT, TV" | |
2238 Option "TVStandard" "PAL-B" | |
2239 Option "TVOutFormat" "Composite" | |
2240 EndSection | |
2241 </programlisting> | |
2242 </para> | |
2243 | |
2244 <para> | |
2245 Of course the important thing is the TwinView part. | |
2246 </para> | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2247 </sect2> |
11264 | 2248 |
20862 | 2249 <!-- ********** --> |
2250 | |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2251 <sect2 id="tvout-neomagic"> |
13189 | 2252 <title>NeoMagic</title> |
20862 | 2253 |
11264 | 2254 <para> |
13189 | 2255 The NeoMagic chip is found in a variety of laptops, some of them are equipped |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2256 with a simple analog TV encoder, some have a more advanced one. |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2257 <itemizedlist> |
17559 | 2258 <listitem><para> |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2259 <emphasis role="bold">Analog encoder chip</emphasis>: |
17559 | 2260 It has been reported that reliable TV out can be obtained by using |
2261 <option>-vo fbdev</option> or <option>-vo fbdev2</option>. | |
2262 You need to have vesafb compiled in your kernel and pass | |
2263 the following parameters on the kernel command line: | |
2264 <option>append="video=vesafb:ywrap,mtrr" vga=791</option>. | |
2265 You should start <application>X</application>, then switch to console mode | |
21720 | 2266 with e.g. |
2267 <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>F1</keycap></keycombo>. | |
17559 | 2268 If you fail to start <application>X</application> before running |
2269 <application>MPlayer</application> from the console, the video | |
2270 becomes slow and choppy (explanations are welcome). | |
2271 Login to your console, then initiate the following command: | |
2272 | |
2273 <screen>clear; mplayer -vo fbdev -zoom -cache 8192 dvd://</screen> | |
2274 | |
2275 Now you should see the movie running in console mode filling up about | |
21720 | 2276 half your laptop's LCD screen. To switch to TV hit |
2277 <keycombo><keycap>Fn</keycap><keycap>F5</keycap></keycombo> three times. | |
17559 | 2278 Tested on a Tecra 8000, 2.6.15 kernel with vesafb, ALSA v1.0.10. |
20862 | 2279 </para></listitem> |
2280 <listitem> | |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2281 <para> |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2282 <emphasis role="bold">Chrontel 70xx encoder chip</emphasis>: |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2283 Found in IBM Thinkpad 390E and possibly other Thinkpads or notebooks. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2284 </para><para> |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2285 You must use <option>-vo vesa:neotv_pal</option> for PAL or |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2286 <option>-vo vesa:neotv_ntsc</option> for NTSC. |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2287 It will provide TV output function in the following 16 bpp and 8 bpp modes: |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2288 </para> |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2289 <itemizedlist> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2290 <listitem><para>NTSC 320x240, 640x480 and maybe 800x600 too.</para></listitem> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2291 <listitem><para>PAL 320x240, 400x300, 640x480, 800x600.</para></listitem> |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2292 </itemizedlist> |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2293 <para>Mode 512x384 is not supported in BIOS. You must scale the image |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2294 to a different resolution to activate TV out. If you can see an image on the |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2295 screen in 640x480 or in 800x600 but not in 320x240 or other smaller |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2296 resolution you need to replace two tables in <filename>vbelib.c</filename>. |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2297 See the vbeSetTV function for details. Please contact the author in this case. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2298 </para> |
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2299 <para> |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2300 Known issues: VESA-only, no other controls such as brightness, contrast, |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2301 blacklevel, flickfilter are implemented. |
21725
e4cd9d683286
Massive <simpara> -> <para>, as no <simpara>'s are actually needed.
torinthiel
parents:
21720
diff
changeset
|
2302 </para> |
12757
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2303 </listitem> |
8bcd91d9efd1
Neomagic TV out support docs by Rudolf Marek <MAREKR2@cs.felk.cvut.cz>
diego
parents:
12578
diff
changeset
|
2304 </itemizedlist> |
11264 | 2305 </para> |
9675 | 2306 </sect2> |
13912
c66b1514ce5b
Remove pointless devices section, make video and audio top level sections.
diego
parents:
13908
diff
changeset
|
2307 </sect1> |
17321
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2308 |
7f9fcf5245a0
Improve overall structure by adding a few top-level chapters so that
diego
parents:
15894
diff
changeset
|
2309 </chapter> |