Mercurial > mplayer.hg
annotate DOCS/xml/en/cd-dvd.xml @ 19745:4c6f19ae1287
Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
(a bit rough, but it's start)
author | gpoirier |
---|---|
date | Fri, 08 Sep 2006 09:05:03 +0000 |
parents | fac3e8a243ce |
children | 0315dc1958c1 |
rev | line source |
---|---|
9675 | 1 <?xml version="1.0" encoding="iso-8859-1"?> |
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> | |
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. | |
20 </para></listitem> | |
21 | |
22 <listitem><para> | |
23 Many CD-ROM drives are annoyingly loud, a lower speed may reduce the noise. | |
24 </para></listitem> | |
25 </itemizedlist> | |
26 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
27 <sect2 id="drives_linux"> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
28 <title>Linux</title> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
29 |
9675 | 30 <para> |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
31 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
|
32 <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
|
33 <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
|
34 <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
|
35 <screen>cdctl -bS <replaceable>[speed]</replaceable></screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
36 </para> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
37 |
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 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
|
40 real IDE device, not the emulated SCSI device. |
9675 | 41 </para> |
42 | |
43 <para> | |
10910
eb339c10228e
Lol! This command will try to change xfer_mode, and not a cdrom spin speed. Removed.
lumag
parents:
10656
diff
changeset
|
44 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
|
45 <screen>echo file_readahead:2000000 > /proc/ide/<replaceable>[cdrom device]</replaceable>/settings</screen> |
9675 | 46 </para> |
47 | |
48 <para> | |
49 This sets prefetched file reading to 2MB, which helps with scratched CD-ROMs. | |
50 If you set it to too high, the drive will continuously spin up and down, and | |
51 will dramatically decrease the performance. | |
52 It is recommended that you also tune your CD-ROM drive with <command>hdparm</command>: | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
53 <screen>hdparm -d1 -a8 -u1 <replaceable>[cdrom device]</replaceable></screen> |
9675 | 54 </para> |
55 | |
56 <para> | |
57 This enables DMA access, read-ahead, and IRQ unmasking (read the <command>hdparm</command> | |
58 man page for a detailed explanation). | |
59 </para> | |
60 | |
61 <para> | |
9776
861a40949bf3
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
62 Please refer to "<filename>/proc/ide/<replaceable>cdrom device</replaceable>/settings"</filename> |
9675 | 63 for fine-tuning your CD-ROM. |
64 </para> | |
65 | |
66 <para> | |
67 SCSI drives do not have a uniform way of setting these parameters (Do you know one? | |
68 Tell us!) There is a tool that works for | |
69 <ulink url="http://das.ist.org/~georg/">Plextor SCSI drives</ulink>. | |
70 </para> | |
71 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
72 </sect2> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
73 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
74 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
75 <sect2 id="drives_freebsd"> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
76 <title>FreeBSD</title> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
77 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
78 <para>speed: |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
79 <screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
80 cdcontrol [-f <replaceable>device</replaceable>] speed <replaceable>[speed]</replaceable> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
81 </screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
82 </para> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
83 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
84 <para>DMA: |
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 sysctl hw.ata.atapi_dma=1 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
87 </screen> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
88 </para> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
89 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
90 </sect2> |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
91 |
9675 | 92 </sect1> |
93 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
94 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
95 |
9675 | 96 <sect1 id="dvd"> |
97 <title>DVD playback</title> | |
98 <para> | |
99 For the complete list of available options, please read the man page. | |
100 The Syntax for a standard Digital Versatile Disc (DVD) is as follows: | |
10184
b6c63ab184a4
Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents:
9776
diff
changeset
|
101 <screen>mplayer dvd://<replaceable><track></replaceable> [-dvd-device <replaceable><device></replaceable>]</screen> |
9675 | 102 </para> |
103 | |
104 <para> | |
105 Example: | |
11713 | 106 <screen>mplayer dvd://<replaceable>1</replaceable> -dvd-device <replaceable>/dev/hdc</replaceable></screen> |
9675 | 107 </para> |
108 | |
109 <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
|
110 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
|
111 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
|
112 </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
|
113 |
4c6f19ae1287
Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
gpoirier
parents:
19733
diff
changeset
|
114 <para> |
9675 | 115 The default DVD device is <filename>/dev/dvd</filename>. If your setup |
116 differs, make a symlink or specify the correct device on the command | |
117 line with the <option>-dvd-device</option> option. | |
118 </para> | |
119 | |
120 <formalpara> | |
121 <title>New-style DVD support (mpdvdkit2)</title> | |
122 <para> | |
123 <application>MPlayer</application> uses <systemitem>libdvdread</systemitem> and | |
124 <systemitem>libdvdcss</systemitem> for DVD decryption and playback. These two | |
125 libraries are contained in the <filename class="directory">libmpdvdkit2/</filename> | |
11540 | 126 subdirectory of the <application>MPlayer</application> source tree, you do not have |
127 to install them separately. We opted for this solution because we had to fix a | |
128 <systemitem>libdvdread</systemitem> bug and apply a patch which adds | |
9675 | 129 <emphasis role="bold">cracked CSS keys caching support</emphasis> to |
18425
f394bb22fb85
missing period, noticed by Christian Korff christian.korff$$@$$gmail$$.$$com
diego
parents:
17425
diff
changeset
|
130 <systemitem>libdvdcss</systemitem>. This results in a large speed increase because the |
9675 | 131 keys do not have to be cracked every time before playing. |
132 </para> | |
133 </formalpara> | |
134 | |
135 <para> | |
136 <application>MPlayer</application> can also use system-wide <systemitem>libdvdread</systemitem> | |
137 and <systemitem>libdvdcss</systemitem> libraries, but this solution is | |
138 <emphasis role="bold">not</emphasis> recommended, as it can result in bugs, | |
139 library incompatibilities and slower speed. | |
140 </para> | |
141 | |
10986 | 142 <note><para> |
143 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
|
144 facilities. Some RPC-2 drives may also require setting the region code. |
10986 | 145 </para></note> |
146 | |
9675 | 147 <formalpara> |
148 <title>DVD structure</title> | |
149 <para> | |
150 DVD disks have 2048 bytes per sector with ECC/CRC. They usually have an UDF | |
151 filesystem on a single track, containing various files (small .IFO and .BUK | |
152 files and big (1GB) .VOB files). They are real files and can be copied/played | |
153 from the mounted filesystem of an unencrypted DVD. | |
154 </para> | |
155 </formalpara> | |
156 | |
157 <para> | |
158 The .IFO files contain the movie navigation information (chapter/title/angle | |
159 map, language table, etc) and are needed to read and interpret the .VOB content | |
160 (movie). The .BUK files are backups of them. They use | |
161 <emphasis role="bold">sectors</emphasis> everywhere, so you need to use raw | |
162 addressing of sectors of the disc to implement DVD navigation or decrypt the | |
163 content. | |
164 </para> | |
165 | |
166 <para> | |
11598
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
167 DVD support needs raw sector-based access to the device. Unfortunately you must |
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
168 (under Linux) be root to get the sector address of a file. That's why we don't |
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
169 use the kernel's filesystem driver at all, instead we reimplement it in |
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
170 userspace. <systemitem>libdvdread</systemitem> 0.9.x and |
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
171 <systemitem>libmpdvdkit</systemitem> do this. The kernel UDF filesystem driver |
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
172 is not needed as they already have their own builtin UDF filesystem driver. |
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
173 Also the DVD does not have to be mounted as only the raw sector-based access is |
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
174 used. |
9675 | 175 </para> |
176 | |
177 <para> | |
178 Sometimes <filename>/dev/dvd</filename> cannot be read by users, so the | |
179 <systemitem>libdvdread</systemitem> authors implemented an emulation layer | |
180 which transfers sector addresses to filenames+offsets, to emulate raw | |
181 access on top of a mounted filesystem or even on a hard disk. | |
182 </para> | |
183 | |
184 <para> | |
185 <systemitem>libdvdread</systemitem> even accepts the mountpoint instead of | |
186 the device name for raw access and checks <filename>/proc/mounts</filename> | |
187 to get the device name. It was developed for Solaris, where device names | |
188 are dynamically allocated. | |
189 </para> | |
190 | |
191 <para> | |
192 The default DVD device is <filename>/dev/dvd</filename>. If your setup differs, | |
193 make a symlink, or specify the correct device on the command line with the | |
194 <option>-dvd-device</option> option. | |
195 </para> | |
196 | |
197 <formalpara> | |
198 <title>DVD authentication</title> | |
199 <para> | |
200 The authentication and decryption method of the new-style DVD support is done | |
201 using a patched <systemitem>libdvdcss</systemitem> (see above). The method can | |
202 be specified through the environment variable <envar>DVDCSS_METHOD</envar>, | |
203 which can be set to key, disk or title. | |
204 </para> | |
205 </formalpara> | |
206 | |
207 <para> | |
208 If nothing is specified it tries the following methods (default: key, | |
209 title request): | |
210 </para> | |
211 | |
212 <orderedlist> | |
213 <listitem><para> | |
214 <emphasis role="bold">bus key</emphasis>: This key is negotiated during | |
215 authentication (a long mix of ioctls and various key exchanges, crypto | |
216 stuff) and is used to encrypt the title and disk keys before sending them | |
217 over the unprotected bus (to prevent eavesdropping). The bus key is needed | |
218 to get and predecrypt the crypted disk key. | |
219 </para></listitem> | |
220 | |
221 <listitem><para> | |
222 <emphasis role="bold">cached key</emphasis>: <application>MPlayer</application> | |
223 looks for already cracked title keys which are stored in the | |
224 <filename class="directory">~/.mplayer/DVDKeys</filename> directory (fast ;). | |
225 </para></listitem> | |
226 | |
227 <listitem><para> | |
228 <emphasis role="bold">key</emphasis>: If no cached key is available, | |
229 <application>MPlayer</application> tries to decrypt the disk key with a set | |
230 of included player keys. | |
231 </para></listitem> | |
232 | |
233 <listitem><para> | |
234 <emphasis role="bold">disk</emphasis>: If the key method fails | |
235 (e.g. no included player keys), <application>MPlayer</application> | |
236 will crack the disk key using a brute force algorithm. This process | |
237 is CPU intensive and requires 64 MB of memory (16M 32Bit entries hash | |
238 table) to store temporary data. This method should always work (slow). | |
239 </para></listitem> | |
240 | |
241 <listitem><para> | |
242 <emphasis role="bold">title request</emphasis>: With the disk key | |
243 <application>MPlayer</application> requests the crypted title keys, | |
244 which are inside <emphasis>hidden sectors</emphasis> using <systemitem>ioctl()</systemitem>. | |
245 The region protection of RPC-2 drives is performed in this step and may fail on such drives. | |
246 If it succeeds, the title keys will be decrypted with the bus and disk key. | |
247 </para></listitem> | |
248 | |
249 <listitem><para> | |
250 <emphasis role="bold">title</emphasis>: This method is used if the title | |
251 request failed and does not rely on any key exchange with the DVD drive. | |
252 It uses a crypto attack to guess the title key directly (by finding a | |
253 repeating pattern in the decrypted VOB content and guessing that the | |
254 plain text corresponding to the first encrypted bytes is a continuation | |
255 of that pattern). The method is also known as "known plaintext attack" | |
256 or "DeCSSPlus". In rare cases this may fail because there is not | |
257 enough encrypted data on the disk to perform a statistical attack or because | |
258 the key changes in the middle of a title. This method is the only way to | |
259 decrypt a DVD stored on a hard disk or a DVD with the wrong region on an | |
260 RPC2 drive (slow). | |
261 </para></listitem> | |
262 </orderedlist> | |
263 | |
264 <para> | |
265 RPC-1 DVD drives only protect region settings through software. RPC-2 drives | |
266 have a hardware protection that allows 5 changes only. It might be | |
267 needed/recommended to upgrade the firmware to RPC-1 if you have a RPC-2 DVD | |
13976 | 268 drive. You can try finding firmware upgrades for your drive on the internet, |
269 <ulink url="http://forum.rpc-1.com/dl_all.php">this firmware forum</ulink> | |
270 may be a good starting point for your search. | |
271 If there is no firmware upgrade available for your device, use the | |
272 <ulink url="http://linvdr.org/projects/regionset/">regionset tool</ulink> | |
9675 | 273 to set the region code of your DVD drive (under Linux). |
274 <emphasis role="bold">Warning</emphasis>: You can only set the region 5 times. | |
275 </para> | |
276 </sect1> | |
277 | |
15879
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
278 |
aa466b84b1d3
Slightly restructured, mention more tools, small fixes, cosmetics.
diego
parents:
14153
diff
changeset
|
279 |
9675 | 280 <sect1 id="vcd"> |
281 <title>VCD playback</title> | |
282 <para> | |
283 For the complete list of available options, please read the man page. The Syntax for a | |
284 standard Video CD (VCD) is as follows: | |
10203 | 285 <screen>mplayer vcd://<replaceable><track></replaceable> [-cdrom-device <replaceable><device></replaceable>]</screen> |
9675 | 286 Example: |
11713 | 287 <screen>mplayer vcd://<replaceable>2</replaceable> -cdrom-device <replaceable>/dev/hdc</replaceable></screen> |
9675 | 288 The default VCD device is <filename>/dev/cdrom</filename>. If your setup |
289 differs, make a symlink or specify the correct device on the command line | |
290 with the <option>-cdrom-device</option> option. | |
291 </para> | |
292 | |
293 <note><para> | |
294 At least Plextor and some Toshiba SCSI CD-ROM drives have horrible performance | |
13973 | 295 reading VCDs. This is because the CDROMREADRAW <systemitem>ioctl</systemitem> |
9675 | 296 is not fully implemented for these drives. If you have some knowledge of SCSI |
297 programming, please <ulink url="../../tech/patches.txt">help us</ulink> | |
298 implement generic SCSI support for VCDs. | |
299 </para></note> | |
300 | |
301 <para> | |
302 In the meantime you can extract data from VCDs with | |
19733 | 303 <ulink url="http://ftp.ntut.edu.tw/ftp/OS/Linux/packages/X/viewers/readvcd/">readvcd</ulink> |
9675 | 304 and play the resulting file with <application>MPlayer</application>. |
305 </para> | |
306 | |
307 <formalpara> | |
308 <title>VCD structure</title> | |
14153 | 309 |
310 <para> | |
311 A Video CD (VCD) is made up of CD-ROM XA sectors, i.e. CD-ROM mode 2 | |
312 form 1 and 2 tracks:</para> | |
9675 | 313 </formalpara> |
314 | |
315 <itemizedlist> | |
316 <listitem><para> | |
14153 | 317 The first track is in mode 2 form 2 format which means it uses L2 |
318 error correction. The track contains an ISO-9660 filesystem with 2048 | |
319 bytes/sector. This filesystem contains VCD metadata information, as | |
320 well as still frames often used in menus. MPEG segments for menus can | |
321 also be stored in this first track, but the MPEGs have to be broken up | |
322 into a series of 150-sector chunks. The ISO-9660 filesystem may | |
323 contain other files or programs that are not essential for VCD | |
324 operation. | |
9675 | 325 </para></listitem> |
326 | |
327 <listitem><para> | |
14153 | 328 The second and remaining tracks are generally raw 2324 bytes/sector |
329 MPEG (movie) tracks, containing one MPEG PS data packet per | |
330 sector. These are in mode 2 form 1 format, so they store more data per | |
331 sector at the loss of some error correction. It is also legal to have | |
332 CD-DA tracks in a VCD after the first track as well. | |
333 On some operating systems there is some trickery that goes on to make | |
334 these non-ISO-9660 tracks appear in a filesystem. On other operating | |
335 systems like GNU/Linux this is not the case (yet). Here the MPEG data | |
336 <emphasis role="bold">cannot be mounted</emphasis>. As most movies are | |
337 inside this kind of track, you should try <option>vcd://2</option> | |
338 first.</para></listitem> | |
9675 | 339 |
340 <listitem><para> | |
341 There exist VCD disks without the first track (single track and no filesystem | |
342 at all). They are still playable, but cannot be mounted. | |
343 </para></listitem> | |
14153 | 344 |
345 <listitem><para> The definition of the Video CD standard is called the | |
346 Philips "White Book" and it is not generally available online as it | |
347 must be purchased from Philips. More detailed information about Video | |
348 CDs can be found in the | |
349 <ulink url="http://www.vcdimager.org/pub/vcdimager/manuals/0.7/vcdimager.html#SEC4">vcdimager documentation</ulink>. | |
350 </para></listitem> | |
351 | |
9675 | 352 </itemizedlist> |
353 | |
354 <formalpara> | |
355 <title>About .DAT files</title> | |
356 <para> | |
357 The ~600 MB file visible on the first track of the mounted VCD is not a real | |
358 file! It is a so called ISO gateway, created to allow Windows to handle such | |
359 tracks (Windows does not allow raw device access to applications at all). | |
360 Under Linux you cannot copy or play such files (they contain garbage). Under | |
361 Windows it is possible as its iso9660 driver emulates the raw reading of | |
362 tracks in this file. To play a .DAT file you need the kernel driver which can | |
363 be found in the Linux version of PowerDVD. It has a modified iso9660 filesystem | |
364 (<filename>vcdfs/isofs-2.4.X.o</filename>) driver, which is able to emulate the | |
365 raw tracks through this shadow .DAT file. If you mount the disc using their | |
9776
861a40949bf3
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
366 driver, you can copy and even play .DAT files with <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
|
367 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
|
368 <option>vcd://</option> instead. Alternatives for VCD copying are the |
9675 | 369 new <ulink url="http://www.elis.rug.ac.be/~ronsse/cdfs/">cdfs</ulink> kernel |
370 driver (not part of the official kernel) that shows CD sessions as image files and | |
13976 | 371 <ulink url="http://cdrdao.sf.net/">cdrdao</ulink>, a bit-by-bit |
9675 | 372 CD grabbing/copying application. |
373 </para> | |
374 </formalpara> | |
375 </sect1> | |
376 </chapter> |