annotate DOCS/cd-dvd.html @ 1668:a5cb1b1d47a8

*** empty log message ***
author gabucino
date Thu, 23 Aug 2001 17:08:46 +0000
parents a79cb130ea44
children dba45a1aafad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1612
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
1 <HTML>
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
2
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
3 <BODY>
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
4
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
5 <PRE>
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
6
1668
a5cb1b1d47a8 *** empty log message ***
gabucino
parents: 1645
diff changeset
7 <A NAME=4.1>4.1. CD-ROM drives</A>
1612
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
8
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
9 From Linux documentation:
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
10
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
11 Some CDROM drives are capable of changing their head-speed. There are several
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
12 reasons for changing the speed of a CDROM drive. Badly pressed CDROMs may
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
13 benefit from less-than-maximum head rate. Modern CDROM drives can obtain very
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
14 high head rates (up to 24-times is common). It has been reported that these
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
15 drives can make reading errors at these high speeds, reducing the speed can
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
16 prevent data loss in these circumstances. Finally, some of these drives can
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
17 make an annoyingly loud noise, which a lower speed may reduce.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
18
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
19 The recommended way to do it is with a program called 'setcd' . It's kinda
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
20 old, but won't be too hard to find on the Net. (UPDATE : new hdparm
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
21 has an option for this !)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
22 Use it with :
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
23
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
24
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
25 setcd -x [speed] [cdrom device]
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
26
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
27
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
28 Also you can try :
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
29
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
30
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
31 echo current_speed:4 >/proc/ide/[cdrom device]/settings
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
32
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
33
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
34 but you'll need root privileges. I use following command too :
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
35
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
36
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
37 echo file_readahead:2000000 >/proc/ide/[cdrom device]/settings
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
38
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
39
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
40 for 2MB prefetched reading from the file (it's useful for scratched CDROMs).
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
41 It's recommended that you tuneup your CDROM drive also with hdparm :
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
42
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
43
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
44 hdparm -d1 -a8 -u1 (cdrom device)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
45
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
46
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
47 to enable using DMA access, readahead, and IRQ unmasking.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
48 (if you don't understand these, *read the hdparm manpage*)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
49
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
50 Please refer to "/proc/ide/[cdrom device]/settings" for fine-tuning your
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
51 CDROM.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
52
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
53
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
54
1668
a5cb1b1d47a8 *** empty log message ***
gabucino
parents: 1645
diff changeset
55 <A NAME=4.2>4.2. DVD playback</A>
1612
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
56
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
57 IMPORTANT NOTE: please _DO_NOT_ require further features for DVD playback. This
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
58 is extremly experimental hack. Maybe it won't work for you. If you're
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
59 capable of helping us do it now! First we would like to fix existing problems.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
60 Then we can start implementing advanced DVD playback functions of course.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
61
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
62 This means current DVD functions are mainly for developers and not for users!
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
63
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
64 First, you must compile and install libcss on your system.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
65 Second, you have to recompile <B>MPlayer</B> with libcss support. There is
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
66 autodetection of libcss, but if it fails, see below :
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
67
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
68 Call ./configure script of <B>MPlayer</B> with these options:
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
69
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
70 ./configure --enable-css --with-csslibdir=/usr/local/lib --with-cssincdir=/usr/local/include
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
71
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
72 (of course you can append your favourite options as well)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
73
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
74 --with-csslibdir=/usr/local/lib
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
75 Directory contains libcss.so shared library. This directory should
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
76 be in your /etc/ld.so.conf as well.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
77
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
78 --with-cssincdir=/usr/local/include
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
79 Directory contains header file 'css.h' of libcss.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
80
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
81 mplayer -dvdauth /dev/dvd /mnt/cdrom/video_ts/vts_01_1.vob
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
82
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
83 where,
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
84
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
85 '-dvdauth /dev/dvd' tells <B>MPlayer</B> the device name of your DVD drive.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
86 it's used in disc authentication process
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
87
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
88 the filename is simply a VOB file path on the disc
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
89
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
90 Note that according to my experiences, disc authentication requires root
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
91 privileges so you must run <B>MPlayer</B> as root! (see section 'Problems').
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
92
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
93 NOTE about the sound:
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
94 It seems that <B>MPlayer</B> sometimes fails to find the first audio stream.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
95 You can specify it with the '-aid 128' option, for example.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
96 Please experience with 128,129 and similar values. See section
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
97 'Problems'.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
98
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
99 On my AMD K6-2 with using hw scaling and colorspace conversion
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
100 capability of my G400 it's possible to watch DVD with about 70%
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
101 CPU usage with '-nosound'. Unfortunately with sound my machine is
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
102 not enough :( Maybe it can be improved somewhat ...
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
103 Guess, it's not so bad ... According to reports from my friends
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
104 xine uses 80-90% CPU to play DVD on much more powerful machines
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
105 like 1GHz Athlon systems (as far as I know, it's said that about
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
106 300MHz celeron is the minimum to watch DVDs ... using windows
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
107 DVD viewers).
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
108
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
109 Hint: I commented out downmix functions from libac3 (of course in this way I
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
110 can't get sound) and audio decoding CPU usage became 11% instead of 24 on
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
111 my machine. This clearly indicates that we should optimize downmix functions
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
112 (KNI code is no use for my k6-2).
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
113
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
114 HOT NEWZ:
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
115 We have got 3Dnow optimized libac3. Wow ;-)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
116
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
117
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
118 Problems (TODO)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
119
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
120 * disc authentication (the FIBMAP ioctl) requires root privilegies.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
121 this is strange since OMS can do it as user too.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
122 * sound. I'm using my only DVD disc (The Matrix) to test <B>MPlayer</B>.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
123 some VOB file have English sound, some have Spanish and some have
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
124 no sound at all.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
125 IT SEEMS that if I give '-aid 128' everything works with English sound ...
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
126 * strange effects but only with SOME vob files (it looks like some interlacing
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
127 effect, eg: every 2nd line on the screen is from the last frame).
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
128
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
129
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
130 Feature TODO
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
131
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
132 * chapter scanner
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
133 * audio stream scanner and allow to select one on runtime as well
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
134 (in stage#1 it would be enough to select one on the startup, see
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
135 'Problems' above)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
136 * DVD menu
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
137 I found (at least on disc 'The Matrix') the menu VOB but I don't
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
138 know how can it be used.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
139 (after some eyeballing on the source of OMS, it seems we would have to
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
140 parse *.ifo files)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
141 * subtitle support
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
142 * OSD/GUI (?) support for select chapter, subtitle and audio stream
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
143 * getting some documentation on DVD format, eg: which is the 'root' VOB
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
144 file on the disc in video_ts directory, which is the menu and so on.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
145 * improve performance (see 'Performance' above)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
146
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
147
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
148 No sound problem (from Matrix DVD, the menu VOB)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
149
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
150 End of packet while searching for PCM header
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
151
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
152 DEMUXER: Too many (2048 in 4131540 bytes) video packets in the buffer!
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
153 (maybe you play a non-interleaved stream/file or video codec failed)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
154 MPEG: No Audio stream found... ->nosound
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
155
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
156 However this does not occur if you specify '-aid 128'.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
157
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
158
1668
a5cb1b1d47a8 *** empty log message ***
gabucino
parents: 1645
diff changeset
159 <A NAME=4.3>4.3. DVD playback FAQ</A>
1612
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
160
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
161 <B>Q: I have some problem not mentioned here ...
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
162 </B>A: Read file 'DVD' as well.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
163
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
164 <B>Q: How can I actually watch DVD with MPlayer?
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
165 </B>A: Ehh. Go on reading this file as well as 'DVD' (hint: you must have libcss)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
166
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
167 <B>Q: So MPlayer can play DVDs? Then it must use DeCSS! You are under arrest
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
168 under the XYZ#$ paragraph of the--
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
169 </B>A: Get back asshole, there is no DeCSS code in MPlayer. It links to libcss.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
170
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
171 <B>Q: Seems to work but no sound.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
172 </B>A: Use '-aid 128' (or try: 128,129,...) command line switch
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
173
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
174 <B>Q: I have got Spanish audio instead of English (or similar problems)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
175 </B>A: See the last question/answer.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
176
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
177 <B>Q: MPlayer complains about FIBMAP or something.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
178 </B>A: Try to run MPlayer as root.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
179
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
180 <B>Q: some strange effect (interlace like thing) especially when fast moving
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
181 objects are shown in the movie
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
182 </B>A: known problem, we try to fix it later
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
183
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
184 <B>Q: DVD support in MPlayer is a piece of shit!
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
185 </B>A: You're probably right :) However please contact us if you can improve it!
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
186
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
187 <B>Q: Where can I get libcss package from?
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
188 </B>A: Maybe from the source of OMS (www.linuxvideo.org).
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
189
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
190 <B>Q: How can I ... (insert some expectable DVD player feature here)
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
191 </B>A: The current implementation is only for viewing VOB files from DVD.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
192 Nothing more, like subtitles, menus and so on.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
193
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
194 <B>Q: How can I set the region code of my DVD-Drive ? I don't have windows!
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
195 </B>A: Use the 'regionset' tool :
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
196 http://www.linuxtv.org/download/dvd/dvd_disc_20000215.tar.gz
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
197
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
198 <B>Q: MPlayer complains about some renamed option?
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
199 </B>A: For future development, old '-dvd' option was replaced by '-dvdauth'.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
200 Option '-dvd' *WILL* do the 'full disk movie' mplaying mode.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
201 But until that, '-dvd' does nothing only prints error message.
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
202
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
203 </PRE>
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
204
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
205 </BODY>
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
206
1b011d6150c7 new, splitted, etc dox
gabucino
parents:
diff changeset
207 </HTML>