No description
Find a file
2013-01-12 09:51:36 -06:00
man Documentation updates 2013-01-10 21:08:53 +01:00
src Apply the sector read number change everywhere 2013-01-10 22:11:56 +01:00
.gitignore Don't forget the install-sh file... 2013-01-10 22:27:12 +01:00
acinclude.m4 Now using C++ 11 ! 2013-01-07 21:28:59 +01:00
aclocal.m4 Include automake-generated build files 2013-01-10 22:24:09 +01:00
bootstrap-build Creation of the repository structure + automake/autoconf structure 2011-05-16 17:08:49 +02:00
configure Explicitly check for C++11 lambda support in configure 2013-01-12 09:51:36 -06:00
configure.ac Explicitly check for C++11 lambda support in configure 2013-01-12 09:51:36 -06:00
depcomp Include automake-generated build files 2013-01-10 22:24:09 +01:00
install-sh Don't forget the install-sh file... 2013-01-10 22:27:12 +01:00
Makefile.am First attempt at ejecting, that doesn't work on my box though, since I need the SCSI eject rather than the IDE one 2013-01-10 21:44:00 +01:00
Makefile.in Include automake-generated build files 2013-01-10 22:24:09 +01:00
missing Include automake-generated build files 2013-01-10 22:24:09 +01:00
README.textile Add installation instructions 2013-01-11 23:25:20 +01:00

h1. dvdcopy: backup your DVDs to disk

This program copies the contents of video DVDs to disk using
libdvdread. This means it can benefit of the present of libdvdcss on
your computer.

This program was designed as a means to view DVDs from public
libraries, as those are too scratched to be viewed directly with
DVD-playing software such as xine, and must be copied to hard disk
first.

h2. Installation instructions

Make sure you have the @dvdread@ development files installed first,
which on Debian based distros such as Ubuntu is just a matter of running:

<pre>
% sudo apt-get install libdvdread-dev
</pre>

Then, unpack the tarball and run

<pre>
% ./configure
% make 
% sudo make install
</pre>

That should get you running.


h2. Use

Typical use:

<pre>
% dvdcopy /dev/dvd Movie
</pre>

This copies the contents of the video DVD @/dev/dvd@ into the
directory @Movie@. Most video-playing softwares can play DVDs directly
in directories. For instance, with xine, you would use:

<pre>
% xine dvd://`pwd`/Movie
</pre>

h2. Caveats

@dvdcopy@ won't work on devices you don't have read access to. On
Debian systems, this usually means you need to be member of the
@cdrom@ group.