Mercurial > mplayer.hg
annotate DOCS/xml/en/cd-dvd.xml @ 26040:125752091a74
removed nonsense in the dvbin section
author | nicodvb |
---|---|
date | Sat, 23 Feb 2008 11:47:35 +0000 |
parents | ff2f302a176b |
children | b89c59df8ba6 |
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:
10910
diff
changeset
|
2 <!-- $Revision$ --> |
9675 | 3 <chapter id="cd-dvd"> |
4 <title>CD/DVD usage</title> | |
5 | |
6 <sect1 id="drives"> | |
7 <title>CD/DVD drives</title> | |
8 | |
9 <para> | |
10 Modern CD-ROM drives can attain very high head speeds, yet some CD-ROM drives | |
11 are capable of running at reduced speeds. There are several reasons that might | |
12 make you consider changing the speed of a CD-ROM drive: | |
13 </para> | |
14 | |
15 <itemizedlist> | |
16 <listitem><para> | |
21521 | 17 There have been reports of read errors at high speeds, especially |
18 with badly pressed CD-ROMs. Reducing the speed can prevent data loss under | |
19 these circumstances. | |
9675 | 20 </para></listitem> |
21 | |
22 <listitem><para> | |
21521 | 23 Many CD-ROM drives are annoyingly loud, a lower speed may reduce the noise. |
9675 | 24 </para></listitem> |
25 </itemizedlist> | |
26 | |
21521 | 27 <!-- ********** --> |
28 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
29 <sect2 id="drives_linux"> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
30 <title>Linux</title> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
31 |
9675 | 32 <para> |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
33 You can reduce the speed of IDE CD-ROM drives with <command>hdparm</command>, |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
34 <command>setcd</command> or <command>cdctl</command>. It works like this: |
9776
861a40949bf3
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
35 <screen>hdparm -E <replaceable>[speed]</replaceable> <replaceable>[cdrom device]</replaceable></screen> |
861a40949bf3
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
36 <screen>setcd -x <replaceable>[speed]</replaceable> <replaceable>[cdrom device]</replaceable></screen> |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
37 <screen>cdctl -bS <replaceable>[speed]</replaceable></screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
38 </para> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
39 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
40 <para> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
41 If you are using SCSI emulation, you might have to apply the settings to the |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
42 real IDE device, not the emulated SCSI device. |
9675 | 43 </para> |
44 | |
45 <para> | |
10910
eb339c10228e
Lol! This command will try to change xfer_mode, and not a cdrom spin speed. Removed.
lumag
parents:
10656
diff
changeset
|
46 If you have root privileges the following command may also help: |
9776
861a40949bf3
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
47 <screen>echo file_readahead:2000000 > /proc/ide/<replaceable>[cdrom device]</replaceable>/settings</screen> |
9675 | 48 </para> |
49 | |
50 <para> | |
51 This sets prefetched file reading to 2MB, which helps with scratched CD-ROMs. | |
52 If you set it to too high, the drive will continuously spin up and down, and | |
53 will dramatically decrease the performance. | |
21521 | 54 It is recommended that you also tune your CD-ROM drive |
55 with <command>hdparm</command>: | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
56 <screen>hdparm -d1 -a8 -u1 <replaceable>[cdrom device]</replaceable></screen> |
9675 | 57 </para> |
58 | |
59 <para> | |
21521 | 60 This enables DMA access, read-ahead, and IRQ unmasking (read the |
61 <command>hdparm</command> man page for a detailed explanation). | |
9675 | 62 </para> |
63 | |
64 <para> | |
21521 | 65 Please refer to |
21596 | 66 "<filename>/proc/ide/<replaceable>[cdrom device]</replaceable>/settings</filename>" |
9675 | 67 for fine-tuning your CD-ROM. |
68 </para> | |
69 | |
70 <para> | |
21521 | 71 SCSI drives do not have a uniform way of setting these parameters (Do you know |
72 one? Tell us!) There is a tool that works for | |
9675 | 73 <ulink url="http://das.ist.org/~georg/">Plextor SCSI drives</ulink>. |
74 </para> | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
75 </sect2> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
76 |
21521 | 77 <!-- ********** --> |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
78 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
79 <sect2 id="drives_freebsd"> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
80 <title>FreeBSD</title> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
81 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
82 <para>speed: |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
83 <screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
84 cdcontrol [-f <replaceable>device</replaceable>] speed <replaceable>[speed]</replaceable> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
85 </screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
86 </para> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
87 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
88 <para>DMA: |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
89 <screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
90 sysctl hw.ata.atapi_dma=1 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
91 </screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
92 </para> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
93 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
94 </sect2> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
95 |
9675 | 96 </sect1> |
97 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
98 |
21521 | 99 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
100 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
101 |
9675 | 102 <sect1 id="dvd"> |
103 <title>DVD playback</title> | |
21521 | 104 |
9675 | 105 <para> |
106 For the complete list of available options, please read the man page. | |
20380 | 107 The syntax to play a standard DVD is as follows: |
21521 | 108 <screen> |
109 mplayer dvd://<replaceable><track></replaceable> [-dvd-device <replaceable><device></replaceable>] | |
110 </screen> | |
9675 | 111 </para> |
112 | |
113 <para> | |
114 Example: | |
20380 | 115 <screen>mplayer dvd://1 -dvd-device /dev/hdc</screen> |
9675 | 116 </para> |
117 | |
118 <para> | |
19745
4c6f19ae1287
Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
gpoirier
parents:
19733
diff
changeset
|
119 If you have compiled <application>MPlayer</application> with dvdnav support, the |
4c6f19ae1287
Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
gpoirier
parents:
19733
diff
changeset
|
120 syntax is the same, except that you need to use dvdnav:// instead of dvd://. |
4c6f19ae1287
Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
gpoirier
parents:
19733
diff
changeset
|
121 </para> |
4c6f19ae1287
Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
gpoirier
parents:
19733
diff
changeset
|
122 |
4c6f19ae1287
Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
gpoirier
parents:
19733
diff
changeset
|
123 <para> |
9675 | 124 The default DVD device is <filename>/dev/dvd</filename>. If your setup |
125 differs, make a symlink or specify the correct device on the command | |
126 line with the <option>-dvd-device</option> option. | |
127 </para> | |
128 | |
129 <para> | |
130 <application>MPlayer</application> uses <systemitem>libdvdread</systemitem> and | |
20380 | 131 <systemitem>libdvdcss</systemitem> for DVD playback and decryption. These two |
20621 | 132 libraries are contained in the |
133 <application>MPlayer</application> source tree, you do not have | |
20167 | 134 to install them separately. You can also use system-wide versions of the two |
135 libraries, but this solution is not recommended, as it can result in bugs, | |
9675 | 136 library incompatibilities and slower speed. |
137 </para> | |
138 | |
10986 | 139 <note><para> |
140 In case of DVD decoding problems, try disabling supermount, or any other such | |
17425
dda0f4feca39
Mention possible region setting requirement for some RPC-2 drives.
rathann
parents:
15879
diff
changeset
|
141 facilities. Some RPC-2 drives may also require setting the region code. |
10986 | 142 </para></note> |
143 | |
9675 | 144 <formalpara> |
20380 | 145 <title>DVD decryption</title> |
9675 | 146 <para> |
20380 | 147 DVD decryption is done by <systemitem>libdvdcss</systemitem>. The method |
148 can be specified through the <envar>DVDCSS_METHOD</envar> environment | |
20426
192efe61abaa
Remove confusing and probably wrong paragraph about libdvdcss.
diego
parents:
20385
diff
changeset
|
149 variable, see the manual page for details. |
9675 | 150 </para> |
151 </formalpara> | |
152 | |
24326
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
153 <sect2 id="region_code"> |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
154 <title>region code</title> |
9675 | 155 <para> |
24326
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
156 DVD drives nowadays come with a nonsensical restriction labeled |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
157 <ulink url="http://en.wikipedia.org/wiki/DVD_region_code">region code</ulink>. |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
158 This is a scheme to force DVD drives to only accept DVDs produced for one of |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
159 the six different regions into which the world was partitioned. How a group |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
160 of people can sit around a table, come up with such an idea and expect the |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
161 world of the 21st century to bow to their will is beyond anyone's guess. |
9675 | 162 </para> |
24326
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
163 |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
164 <para> |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
165 Drives that enforce region settings through software only are also known as |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
166 RPC-1 drives, those that do it in hardware as RPC-2. RPC-2 drives allow |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
167 changing the region code five times before it remains fixed. |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
168 Under Linux you can use the |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
169 <ulink url="http://linvdr.org/projects/regionset/">regionset</ulink> tool |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
170 to set the region code of your DVD drive. |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
171 </para> |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
172 |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
173 <para> |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
174 Thankfully, it is possible to convert RPC-2 drives into RPC-1 drives through |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
175 a firmware upgrade. Feed the model number of your DVD drive into your favorite |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
176 search engine or have a look at the forum and download sections of |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
177 <ulink url="http://www.rpc1.org/">"The firmware page"</ulink>. |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
178 While the usual caveats for firmware upgrades apply, experience with |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
179 getting rid of region code enforcement is generally positive. |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
180 </para> |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
181 </sect2> |
ff2f302a176b
Replace short region code explanation by more detailed section.
diego
parents:
24324
diff
changeset
|
182 |
9675 | 183 </sect1> |
184 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
185 |
21521 | 186 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> |
187 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
188 |
9675 | 189 <sect1 id="vcd"> |
190 <title>VCD playback</title> | |
21521 | 191 |
9675 | 192 <para> |
21521 | 193 For the complete list of available options, please read the man page. The |
194 Syntax for a standard Video CD (VCD) is as follows: | |
10203 | 195 <screen>mplayer vcd://<replaceable><track></replaceable> [-cdrom-device <replaceable><device></replaceable>]</screen> |
9675 | 196 Example: |
20385
985accf8cf95
<replaceable> tags aren't needed in literal example
torinthiel
parents:
20380
diff
changeset
|
197 <screen>mplayer vcd://2 -cdrom-device /dev/hdc</screen> |
9675 | 198 The default VCD device is <filename>/dev/cdrom</filename>. If your setup |
199 differs, make a symlink or specify the correct device on the command line | |
200 with the <option>-cdrom-device</option> option. | |
201 </para> | |
202 | |
203 <note><para> | |
204 At least Plextor and some Toshiba SCSI CD-ROM drives have horrible performance | |
13973 | 205 reading VCDs. This is because the CDROMREADRAW <systemitem>ioctl</systemitem> |
9675 | 206 is not fully implemented for these drives. If you have some knowledge of SCSI |
207 programming, please <ulink url="../../tech/patches.txt">help us</ulink> | |
208 implement generic SCSI support for VCDs. | |
209 </para></note> | |
210 | |
211 <para> | |
212 In the meantime you can extract data from VCDs with | |
19733 | 213 <ulink url="http://ftp.ntut.edu.tw/ftp/OS/Linux/packages/X/viewers/readvcd/">readvcd</ulink> |
9675 | 214 and play the resulting file with <application>MPlayer</application>. |
215 </para> | |
216 | |
217 <formalpara> | |
218 <title>VCD structure</title> | |
14153 | 219 <para> |
220 A Video CD (VCD) is made up of CD-ROM XA sectors, i.e. CD-ROM mode 2 | |
21521 | 221 form 1 and 2 tracks: |
9675 | 222 <itemizedlist> |
223 <listitem><para> | |
21521 | 224 The first track is in mode 2 form 2 format which means it uses L2 |
225 error correction. The track contains an ISO-9660 filesystem with 2048 | |
226 bytes/sector. This filesystem contains VCD metadata information, as | |
227 well as still frames often used in menus. MPEG segments for menus can | |
228 also be stored in this first track, but the MPEGs have to be broken up | |
229 into a series of 150-sector chunks. The ISO-9660 filesystem may | |
230 contain other files or programs that are not essential for VCD | |
231 operation. | |
9675 | 232 </para></listitem> |
233 | |
234 <listitem><para> | |
21521 | 235 The second and remaining tracks are generally raw 2324 bytes/sector |
236 MPEG (movie) tracks, containing one MPEG PS data packet per | |
237 sector. These are in mode 2 form 1 format, so they store more data per | |
238 sector at the loss of some error correction. It is also legal to have | |
239 CD-DA tracks in a VCD after the first track as well. | |
240 On some operating systems there is some trickery that goes on to make | |
241 these non-ISO-9660 tracks appear in a filesystem. On other operating | |
242 systems like GNU/Linux this is not the case (yet). Here the MPEG data | |
243 <emphasis role="bold">cannot be mounted</emphasis>. As most movies are | |
244 inside this kind of track, you should try <option>vcd://2</option> | |
245 first. | |
246 </para></listitem> | |
9675 | 247 |
248 <listitem><para> | |
21521 | 249 There exist VCD disks without the first track (single track and no filesystem |
250 at all). They are still playable, but cannot be mounted. | |
9675 | 251 </para></listitem> |
14153 | 252 |
21521 | 253 <listitem><para> |
254 The definition of the Video CD standard is called the | |
255 Philips "White Book" and it is not generally available online as it | |
256 must be purchased from Philips. More detailed information about Video | |
257 CDs can be found in the | |
258 <ulink url="http://www.vcdimager.org/pub/vcdimager/manuals/0.7/vcdimager.html#SEC4">vcdimager documentation</ulink>. | |
14153 | 259 </para></listitem> |
9675 | 260 </itemizedlist> |
21521 | 261 </para> |
262 </formalpara> | |
9675 | 263 |
264 <formalpara> | |
265 <title>About .DAT files</title> | |
266 <para> | |
267 The ~600 MB file visible on the first track of the mounted VCD is not a real | |
268 file! It is a so called ISO gateway, created to allow Windows to handle such | |
269 tracks (Windows does not allow raw device access to applications at all). | |
270 Under Linux you cannot copy or play such files (they contain garbage). Under | |
271 Windows it is possible as its iso9660 driver emulates the raw reading of | |
272 tracks in this file. To play a .DAT file you need the kernel driver which can | |
273 be found in the Linux version of PowerDVD. It has a modified iso9660 filesystem | |
274 (<filename>vcdfs/isofs-2.4.X.o</filename>) driver, which is able to emulate the | |
275 raw tracks through this shadow .DAT file. If you mount the disc using their | |
21521 | 276 driver, you can copy and even play .DAT files with |
277 <application>MPlayer</application>. But it will not | |
10184
b6c63ab184a4
Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents:
9776
diff
changeset
|
278 work with the standard iso9660 driver of the Linux kernel! Use |
b6c63ab184a4
Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents:
9776
diff
changeset
|
279 <option>vcd://</option> instead. Alternatives for VCD copying are the |
9675 | 280 new <ulink url="http://www.elis.rug.ac.be/~ronsse/cdfs/">cdfs</ulink> kernel |
21521 | 281 driver (not part of the official kernel) that shows CD sessions as image files |
282 and <ulink url="http://cdrdao.sf.net/">cdrdao</ulink>, a bit-by-bit | |
9675 | 283 CD grabbing/copying application. |
284 </para> | |
285 </formalpara> | |
286 </sect1> | |
287 </chapter> |