• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H20-Apr-2021-2,2941,769

m4/H20-Apr-2021-9,3728,465

msvc/H06-Jan-2015-474393

src/H20-Apr-2021-6,3024,078

test/H20-Apr-2021-425305

AUTHORSH A D27-Feb-20131.7 KiB8968

COPYINGH A D19-Feb-201617.7 KiB340281

ChangeLogH A D20-Apr-2021116.6 KiB3,6282,447

INSTALLH A D19-Apr-20211.5 KiB6838

Makefile.amH A D16-Dec-20151.9 KiB8463

Makefile.inH A D03-May-202241 KiB1,1271,001

NEWSH A D20-Apr-20215 KiB193134

READMEH A D16-Nov-20142.1 KiB6342

aclocal.m4H A D20-Apr-202142.7 KiB1,1751,067

compileH A D12-Feb-20197.2 KiB349259

config.guessH A D12-Feb-201943.2 KiB1,4811,288

config.h.inH A D20-Apr-20214.4 KiB170115

config.subH A D12-Feb-201935.3 KiB1,8021,661

configureH A D20-Apr-2021478.9 KiB16,55713,994

configure.acH A D20-Apr-20216.7 KiB256225

depcompH A D12-Feb-201923 KiB792502

install-shH A D12-Feb-201915 KiB519337

libdvdcss.specH A D20-Apr-20215.7 KiB182140

libdvdcss.spec.inH A D15-Feb-20155.7 KiB182142

ltmain.shH A D12-Feb-2019319.4 KiB11,2508,044

missingH A D12-Feb-20196.7 KiB216143

README

1README for libdvdcss, a portable abstraction library for DVD decryption
2
3
4Introduction
5============
6
7libdvdcss is part of the VideoLAN project, which among other things produces
8VLC, a full video client/server streaming solution. VLC can  also be used as
9a standalone program to play video streams from a hard disk or a DVD.
10
11
12Building and Installing libdvdcss
13=================================
14
15See the INSTALL file.
16
17
18Running libdvdcss
19=================
20
21The behavior of the library can be changed by setting two environment variables:
22
23  DVDCSS_METHOD={title|disc|key}: method for key decryption
24    title: By default the decrypted title key is guessed from the encrypted
25           sectors of the stream. Thus it should work with a file as well as
26           the DVD device. But decrypting a title key may take too much time
27           or even fail. With the title method, the key is only checked at
28           the beginning of each title, so it will not work if the key
29           changes in the middle of a title.
30    disc:  The disc key is cracked first. Afterwards all title keys can be
31           decrypted instantly, which allows checking them often.
32    key:   The same as the "disc" method if you do not have a file with player
33           keys at compile time. If you do, disc key decryption will be faster.
34           This is the default method also employed by libcss.
35  DVDCSS_VERBOSE={0|1|2}: libdvdcss verbosity
36    0: no error messages, no debug messages (this is the default)
37    1: only error messages
38    2: error and debug messages
39
40
41Troubleshooting
42===============
43
44A mailing-list has been set up for support and discussion about
45libdvdcss. Its address is:
46
47   <libdvdcss-devel@videolan.org>
48
49To subscribe or unsubscribe, go to:
50
51   http://mailman.videolan.org/
52
53When reporting bugs, try to be as precise as possible (which OS, which
54distribution, what plugins you were trying, and so on).
55
56
57Resources
58=========
59
60The VideoLAN web site at http://www.videolan.org/ is a good start for
61information about MPEG and DVD playback. Have a look at the support
62section to look for answers.
63