annotate DOCS/cd-dvd.html @ 1704:a2e1432f7ac3

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