Show pageOld revisionsBacklinksAdd to bookExport to PDFBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Backup ====== ===== makemkv ===== Wonderful for ecncrypted bluray http://www.makemkv.com/forum2/viewtopic.php?f=3&t=224 ===== mplayer ===== good for dvd protected with bad sectors detect main feature <code> LANG=en dvdbackup -i /dev/sr0 -I | egrep -i -2 "^Main feature" </code> with Disney DVD play the disk with <code> mplayer -v dvdnav:// -dvd-device /dev/sr0 2>&1 | grep TITLE </code> without a title number, then select the main feature in the menu and look at the debug output, you'll see which title is played, when the message "switching to track xy" appears. dump main feature (1 in this example) to vob file <code> mplayer dvdnav://1 -dvd-device /dev/sr0 -dumpstream -dumpfile movie.vob mplayer dvd://1//dev/sr0 -dumpstream -dumpfile movie.vob </code> convert to matroska con MKVToolNix <code> mkvmerge -o movie.mkv movie.vob </code> oppure con avconv <code> avconv -fflags +genpts -i movie.vob -c:v copy -an movie.mkv # o con ffmpeg ffmpeg -i movie.vob -sameq movie.mkv </code> ===== vlc ===== good for dvd with bad sectors <code> vlc dvdsimple:///dev/sr0#1 --sout #standard{access=file,mux=ts,dst=dvdout.mpg}" vlc://quit </code> ===== dvdbackup ===== all DVD <code> dvdbackup -i /dev/sr0 -M –o dvd_structure genisoimage -dvd-video -udf -o clean_dvd.iso dvd_structure </code> main feature <code> dvdbackup -i /dev/sr0 -F cat VIDEO_TS/*.VOB > movie.vob </code> ===== readdvd ===== <code> readdvd -d /dev/sr0 -o filename.iso -s 8 -v </code> ===== ddrescue ===== <code> ddrescue –n –b 2048 /dev/sr0 output.iso dvdbackup –M –i output.iso –o dvd_structure genisoimage -dvd-video -udf -o clean_dvd.iso dvd_structure </code> ===== tricks ===== Investigating the device mode pages with sdparm, I came up with the following to make it stop trying to read those blocks over and over again: <code> sdparm –set=RRC=0 /dev/sr0 </code> Repair index and/or merge <code> mencoder -forceidx -o output.avi -oac copy -ovc copy input1.avi [input2.avi ...] </code> backup.txt Last modified: 2015/09/02 19:47by scipio