1612
|
1 <HTML>
|
1704
|
2 <BODY BGCOLOR=white>
|
|
3
|
|
4 <FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1612
|
5
|
1682
|
6 <P><B><A NAME=4.1>4.1. CD-ROM drives</A></B></P>
|
|
7
|
1867
|
8 <P>Playing standard Video CDs:</P>
|
|
9
|
|
10 <P>
|
|
11 mplayer -vcd <I>trackno</I> [device]<BR><BR>
|
|
12 Examples:<BR>
|
|
13 mplayer -vcd 1<BR>
|
|
14 mplayer -fs -vcd 2 /dev/hdc<BR>
|
|
15 </P>
|
|
16
|
|
17 <P>
|
|
18 Notes:<BR>
|
|
19 - Do NOT mount VCD disks and play DAT files directly! It may work under windows
|
|
20 but won't work under linux. You have to play them directly, with the -vcd
|
|
21 option!<BR>
|
|
22 - VCD disks usually have 2 tracks: a data track (containing autostart windows
|
|
23 playback program, karaoke data etc) and a mode-2 track (the movie), so try
|
|
24 -vcd 2 first!<BR>
|
|
25 - the default VCD device is /dev/cdrom. if your device differs, then you have
|
|
26 to make a symlink, or specify it in command line!
|
|
27 </P>
|
|
28
|
1682
|
29 <P>From Linux documentation:</P>
|
1612
|
30
|
1682
|
31 <P>Some CDROM drives are capable of changing their head-speed. There are several
|
|
32 reasons for changing the speed of a CDROM drive. Badly pressed CDROMs may
|
|
33 benefit from less-than-maximum head rate. Modern CDROM drives can obtain very
|
|
34 high head rates (up to 24-times is common). It has been reported that these
|
|
35 drives can make reading errors at these high speeds, reducing the speed can
|
|
36 prevent data loss in these circumstances. Finally, some of these drives can
|
|
37 make an annoyingly loud noise, which a lower speed may reduce.</P>
|
1612
|
38
|
1682
|
39 <P>The recommended way to do it is with a program called 'setcd' . It's kinda
|
|
40 old, but won't be too hard to find on the Net. (UPDATE : new hdparm
|
|
41 has an option for this !)
|
|
42 Use it with :</P>
|
|
43
|
|
44 <P> <CODE>setcd -x [speed] [cdrom device]</CODE></P>
|
1612
|
45
|
1682
|
46 <P>Also you can try:</P>
|
|
47
|
|
48 <P> <CODE>echo current_speed:4 >/proc/ide/[cdrom device]/settings</CODE></P>
|
|
49
|
|
50 <P>but you'll need root privileges. I use following command too:</P>
|
|
51
|
|
52 <P> <CODE>echo file_readahead:2000000 >/proc/ide/[cdrom device]/settings</CODE></P>
|
1612
|
53
|
1682
|
54 <P>for 2MB prefetched reading from the file (it's useful for scratched CDROMs).
|
|
55 It's recommended that you tuneup your CDROM drive also with hdparm:</P>
|
|
56
|
|
57 <P> <CODE>hdparm -d1 -a8 -u1 (cdrom device)</CODE></P>
|
1612
|
58
|
1682
|
59 <P>to enable using DMA access, readahead, and IRQ unmasking.
|
|
60 (if you don't understand these, *read the hdparm manpage*)</P>
|
1612
|
61
|
1682
|
62 <P>Please refer to "<CODE>/proc/ide/[cdrom device]/settings</CODE>" for fine-tuning your
|
|
63 CDROM.</P>
|
1612
|
64
|
1682
|
65 <P><B><A NAME=4.2>4.2. DVD playback</A></B></P>
|
|
66
|
|
67 <P>Yes, the real DVD support has been arrived. You don't need to play VOB files
|
|
68 manually from disk thinking of the purpose of a file in the video_ts
|
|
69 directory, you don't need worry it it's an encrypted disk or not (in old
|
|
70 <B>MPlayer</B> you had to put '-dvdauth /dev/dvd' into the command line in case
|
|
71 of encrypted discs), and you don't need even mount your disk to be able to
|
|
72 play :)</P>
|
|
73
|
|
74 <P>IMPORTANT NOTE: please _DO_NOT_ require further features for DVD playback.
|
|
75 This is the first version of some real DVD support inside <B>MPlayer</B> and
|
|
76 we're busy with hunting bugs and implementing basic DVD player features.</P>
|
1612
|
77
|
2001
|
78 <P><B>MPlayer</B> uses libdvdread which has got built in support for IFO
|
|
79 parsing, reading navi blocks and doing authentication/descrambling. libdvdread
|
|
80 uses libdvdcss to the latter tasks. So you will need libdvdcss and libdvdread
|
|
81 downloaded, compiled and installed BEFORE you run ./configure script of
|
|
82 <B>MPlayer</B> which will autodetect libdvdread for you in this way.</P>
|
1612
|
83
|
1682
|
84 <UL>
|
2001
|
85 <LI><P><B>Download source of libdvdread and libdvdcss.</B></P>
|
1682
|
86
|
|
87 <P><I>You can download them from
|
|
88 <A HREF="http://www.dtek.chalmers.se/groups/dvd">http://www.dtek.chalmers.se/groups/dvd</A>
|
2001
|
89 (click 'download' in the menu at the left, and you can find libdvdcss and
|
1682
|
90 libdvdread in a table).</I></P></LI>
|
|
91
|
2001
|
92 <LI><P><B>Compile and install libdvdcss THEN libdvdread.</B></P>
|
1682
|
93
|
|
94 <P><I>Read documentation of these packages to do this step easily.</I></P></LI>
|
|
95
|
|
96 <LI><P><B>Recompile MPlayer.</B></P>
|
|
97
|
|
98 <P><I>Run <CODE>./configure</CODE>. If you install libdvdread correctly, ./configure
|
|
99 says something similar:<BR><CODE>Checking for DVDread support ... yes</CODE><BR>
|
|
100 (Of course you can put your favourite configure options into the command
|
|
101 line when you run ./configure). That's it! Say: <CODE>make</CODE>, then <CODE>make install</CODE>.</I></P></LI>
|
|
102 </UL>
|
1612
|
103
|
2001
|
104 <P>Of course after installing libdvdcss and libdvdread you don't need recompile
|
1682
|
105 them at each time when you want to recompile <B>MPlayer</B> (from a new CVS version
|
|
106 for example) since the needed packages have already been installed on your
|
|
107 machine.</P>
|
1612
|
108
|
1682
|
109 <P><B>Using MPlayer to play DVDs:</B></P>
|
1612
|
110
|
|
111
|
1682
|
112 <TABLE BORDER=0 WIDTH=100%>
|
1987
|
113 <TD VALIGN=top><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>-dvd <title_id> </TD>
|
|
114 <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>Enables DVD support and selects title.</TD><TR>
|
|
115 <TD VALIGN=top><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>-chapter <chapter_id> </TD>
|
|
116 <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>Selects DVD chapter (default: play from chapter 1)</TD><TR>
|
|
117 <TD VALIGN=top><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>-dvdangle <angle_id> </TD>
|
|
118 <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>Selects camera angle (default: 1)</TD><TR>
|
1682
|
119 </TABLE>
|
1612
|
120
|
1682
|
121 <P>Default device is <CODE>/dev/dvd</CODE>, you can change it in config.h
|
|
122 (compile time option), or you can specify it as a filename for <B>MPlayer</B>:
|
|
123 </P>
|
1612
|
124
|
1682
|
125 <P> <CODE>mplayer -dvd 1 /dev/dvd</CODE></P>
|
|
126 <P> <CODE>mplayer -dvd 2 -chapter 5 -dvdangle 2</CODE></P>
|
1612
|
127
|
1682
|
128 <P><B><A NAME=4.3>4.3. DVD playback FAQ</A></B></P>
|
1612
|
129
|
1682
|
130 <TABLE BORDER=0 ALIGN=left WIDTH=100%>
|
1612
|
131
|
1987
|
132 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
2001
|
133 Can I compile libdvdread and libdvdcss for example on my sweet Sparc/Solaris?
|
1987
|
134 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
135 Who knows ... Please test it and send feedback. But it's said that it
|
|
136 should work. Please refer documentation of libdvdread and its homepage
|
|
137 as well. We're not authors of libdvdread.
|
|
138 </TD><TR><TD COLSPAN=3> </TD><TR>
|
1612
|
139
|
1987
|
140 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
141 What about subtitles? Can MPlayer decode them?
|
1987
|
142 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
2120
|
143 Yes it can (or at least it would be able to) but there is no DVD subtitle
|
1682
|
144 displaying functionality inside <B>MPlayer</B> (DVD subs are stored as images,
|
|
145 not text!). However it's a planned feature (at the time of libvo2).
|
|
146 </TD><TR><TD COLSPAN=3> </TD><TR>
|
1612
|
147
|
1987
|
148 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
149 I've got no sound / bad sound (Spanish audio and other ugly things).
|
1987
|
150 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
151 <B>MPlayer</B> currently does not use all of information of IFO blocks from DVD.
|
|
152 You can adjust the right DVD audio stream with: '-aid 128' command line
|
|
153 option, where 128 is the stream id of requested audio stream. You can
|
|
154 experience with numbers of 128,129,... and so on. Of course this problem
|
|
155 will be solved in the future.
|
|
156 </TD><TR><TD COLSPAN=3> </TD><TR>
|
1612
|
157
|
1987
|
158 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
159 There is some strange effect (interlace like thing) especially when fast
|
|
160 moving objects are shown in the movie.
|
1987
|
161 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
162 Known problem, we try to fix it later (when we switch to libvo2).
|
|
163 </TD><TR><TD COLSPAN=3> </TD><TR>
|
1612
|
164
|
1987
|
165 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
166 How can I set the region code of my DVD-Drive ? I don't have windows!
|
1987
|
167 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
168 Use the 'regionset' tool:
|
1731
|
169 <A HREF="http://www.linuxtv.org/download/dvd/dvd_disc_20000215.tar.gz">http://www.linuxtv.org/download/dvd/dvd_disc_20000215.tar.gz</A>
|
1682
|
170 </TD><TR><TD COLSPAN=3> </TD><TR>
|
1612
|
171
|
1987
|
172 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
173 So MPlayer can play DVDs? Then it must use DeCSS! You are under arrest
|
|
174 under the XYZ#$ paragraph of the--
|
1987
|
175 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
176 Get back asshole, there is no DeCSS code in <B>MPlayer</B>. <B>MPlayer</B> uses libdvdread
|
2754
|
177 by linking against it, and libdvdread uses libdvdcss by dynamic loading it.<BR>
|
|
178 <B>UPDATE</B> : DeCSS is free.
|
1682
|
179 </TD><TR><TD COLSPAN=3> </TD><TR>
|
1612
|
180
|
1987
|
181 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
182 Do I need to be (setuid) root/setuid fibmap_mplayer to be able to play DVD?
|
1987
|
183 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
184 No, you don't. This is the past :) However of course you must have got
|
|
185 the proper rights to the DVD device driver entry (in /dev).
|
|
186 </TD><TR><TD COLSPAN=3> </TD><TR>
|
1612
|
187
|
1987
|
188 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
189 How can I ... (insert some expectable DVD player feature here)?
|
1987
|
190 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
191 The current implementation is the first implementation of some real DVD
|
|
192 player functionality. First, we would like to target existing bugs and
|
|
193 basic features before implementing new features.
|
|
194 </TD><TR><TD COLSPAN=3> </TD><TR>
|
1612
|
195
|
1987
|
196 <TD></TD><TD VALIGN=top>Q:</TD><TD WIDTH=100%><B><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
2001
|
197 Where can I get libdvdread and libdvdcss packages from?
|
1987
|
198 </B></TD><TR><TD></TD><TD VALIGN=top>A:</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
|
1682
|
199 From the site of Ogle:
|
|
200 <A HREF="http://www.dtek.chalmers.se/groups/dvd">http://www.dtek.chalmers.se/groups/dvd</A>.
|
|
201 </TD><TR><TD COLSPAN=3> </TD><TR>
|
|
202 </TABLE>
|
1612
|
203
|
|
204 </BODY>
|
|
205 </HTML>
|