GNU/Linux Desktop Survival Guide
by Graham Williams |
|||||
Audio Backup Command Line Tools |
Debian Packages: mjpegtools dvdbackup cpdvd cpvts
A useful command line script to backup a DVD to SVCD is mencvcd:
$ mencvcd battles dvd://3 -w -a 2 -vfr 3 |
You can obtain information about the contents of title 1 of a DVD with the tcprobe command:
$ tcprobe -i /dev/dvd -T 1 |
To extract title 1 of your dvd into the file video.avi:
$ mencoder dvd://1 -oac copy -ovc copy -o video.avi |
You can copy the raw video data from a DVD to your hard disk with either dvdbackup or cpdvd. With cpdvd simply identify the device and a folder which will be created to store the data:
$ cpdvd -d /dev/dvd xyz |
$ cpdvd -m /media/dvd -t 1 xyz |
Alternatively you can use dvdbackup to extract the data. It will create its own directory for the DVD based on the DVDs title:
$ dvdbackup -F -i/dev/dvd -o. |