hello,coolcash wrote:I have looked around the forums and couldn't find an easy way to rip a dvd to iso. I don't want to do any re-encoding, or removing of features.
Any suggestions?
Thanks
Code: Select all
dd if=/dev/dvd of=/path/to/image.isoDvdsrhink is not a 1:1 replicator. dd is what you want, it doesn't understand css nor any other stuff, it just reads bytes from a raw stream, and dump them into another one. It doesn't understand filesystems either. It will just read /dev/dvd until the end of the device, and dump a 1:1 copy of whatever it finds into that device, even if its a lot of ceros or any other useless stuff. If you get read errors you need ddrescue instead, because dd will abort on any error.coolcash wrote:I was thinking of that. But what about CSS and read errors? I guess CSS doesn't really matter since any program can decode that now.

Code: Select all
cat /dev/dvd > dvd.iso

Code: Select all
# pmount /dev/dvd
# vobcopy -m
# eject /dev/dvd
# mkisofs -v -dvd-video -V DVD_VIDEO -o DVD_VIDEO.iso DVD_VIDEO/ I suppose this depends on how you want to use the video. I am pretty sure anything that plays DVDs on a Linux system cracks the CSS before playing regardless. Finding a CSS key from encrypted data is trivial. So, if you intend to only use the disc image on a Linux system (or any system that will do the CSS cracking for you) you are all set to go with dd. On the flip side, if you are making the disc image so that you can burn it to play on conventional DVD players, you will have to take extra steps to decrypt the CSS ahead of time. The initial reason I suggested dd is because the OP asked for a 1:1 copy. If you decrypt the DVD to make your image, this is no longer a 1:1 copy even though the content is effectively the same.cyrillic wrote:I have done this before, and using "dd" or "cat" is no good for CSS protected videos. The resulting disc image will still be encrypted, but you won't be able to find the encryption keys without the original media.
This was not my experience, last time I tried it with mplayer and xine. It will spit out a bunch of errors, and then quit telling you that the content is probably encrypted (duh!). Playing the exact same content from the original media works without problems.niskel wrote:I am pretty sure anything that plays DVDs on a Linux system cracks the CSS before playing regardless. Finding a CSS key from encrypted data is trivial. So, if you intend to only use the disc image on a Linux system (or any system that will do the CSS cracking for you) you are all set to go with dd.

Code: Select all
ATAPI device hdd:
Error: Illegal request -- (Sense key=0x05)
Read of scrambled sector without authentication -- (asc=0x6f, ascq=0x03)
The failed "Read 10" packet command was:
"28 00 00 01 13 00 00 00 02 00 00 00 00 00 00 00 "
end_request: I/O error, dev hdd, sector 281600
hdd: command error: status=0x51 { DriveReady SeekComplete Error }
hdd: command error: error=0x50 { LastFailedSense=0x05 }
ide: failed opcode was: unknown
The ARccOS wiki page you posted says ddrescue can be used to bypass it as i92guboj already mentioned. I don't personally know about RipGuard but I bet dd/ddrescue would work for it as well.bucciarati wrote:This is what comes out when trying to cat/dd/whatever a protected disc from Paramount:
Mplayer on the very same dvd works like a charm.Code: Select all
ATAPI device hdd: Error: Illegal request -- (Sense key=0x05) Read of scrambled sector without authentication -- (asc=0x6f, ascq=0x03) The failed "Read 10" packet command was: "28 00 00 01 13 00 00 00 02 00 00 00 00 00 00 00 " end_request: I/O error, dev hdd, sector 281600 hdd: command error: status=0x51 { DriveReady SeekComplete Error } hdd: command error: error=0x50 { LastFailedSense=0x05 } ide: failed opcode was: unknown
Please inform yourself before speaking.
http://en.wikipedia.org/wiki/ARccOS_Protection
http://en.wikipedia.org/wiki/RipGuard#T ... gy_Details

No. dd_rescue can extract something from the dvd, but the kernel spits out bazillions of the very same messages i already pasted.niskel wrote:The ARccOS wiki page you posted says ddrescue can be used to bypass it as i92guboj already mentioned. I don't personally know about RipGuard but I bet dd/ddrescue would work for it as well.



I recommend this, as well. I use it and it works perfectly. If you really need everything as "an image" instead of a directory structure, use another tool to recreate the image.andreas_st wrote:media-video/dvdbackup is able to copy a DVD to hard disk without reducing the quality. It removes CSS encryption. It doesn't make an image though. You get a VIDEO_TS folder containing the VOB files.
Not true of this method. Dvdbackup removes css encryption when it creates the files.NeddySeagoon wrote:Copying DVDs any of the ways discussed in this thread leaves the keys behind as they are stored outside the area reachable by computer DVD drives, so the copies (unless they are region free) will not work in a domestic DVD player.
