Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ripping_dvds [2013/08/01 16:12] – created beandog | ripping_dvds [2018/03/28 05:56] (current) – [Extracting Image / Cloning DVD Filesystem / Ripping a DVD to an ISO] beandog | ||
---|---|---|---|
Line 5: | Line 5: | ||
* [[vobcopy]] | * [[vobcopy]] | ||
+ | **For the impatient: | ||
==== Contextual Notes ==== | ==== Contextual Notes ==== | ||
Line 10: | Line 11: | ||
The reason I focus mainly on copying the content is because I like to archive my discs. | The reason I focus mainly on copying the content is because I like to archive my discs. | ||
+ | |||
+ | ==== Filesystem ==== | ||
+ | |||
+ | The file extension '' | ||
+ | |||
+ | ==== Terminology ==== | ||
+ | |||
+ | When I refer to "an ISO" in my notes, I am always using that term to describe a DVD that has been cloned from the physical media to the hard drive as a single file. | ||
+ | |||
+ | Using the term " | ||
+ | |||
+ | ==== Extracting Image / Cloning DVD Filesystem / Ripping a DVD to an ISO ==== | ||
+ | |||
+ | The best way to rip to an ISO is to copy the entire contents of the disc. For that, I use dd with [[pv]] or [[ddrescue]]. | ||
+ | |||
+ | There are other ways to copy the DVD, such as [[vobcopy]], | ||
+ | |||
+ | I mostly use [[ddrescue]] to rip a DVD. Here's a sample syntax: | ||
+ | |||
+ | < | ||
+ | ddrescue -b 2048 -n /dev/dvd dvd.iso | ||
+ | </ | ||
+ | |||
+ | Simple as that. Once the ISO is ripped, you can access it just as you would a DVD drive: | ||
+ | |||
+ | Examples: | ||
+ | |||
+ | < | ||
+ | lsdvd dvd.iso | ||
+ | mplayer dvd:// -dvd-drive dvd.iso | ||
+ | HandBrakeCLI -i dvd.iso | ||
+ | </ | ||
+ | |||
+ | And so on ... | ||
+ | |||
+ | It may be worth noting (or not) that because I rip the content this way, all of the CSS encryption is also intact. | ||
+ | |||
+ | There are other ways to get the content. | ||
+ | |||
+ | < | ||
+ | cat /dev/dvd > dvd.iso | ||
+ | </ | ||
+ | |||
+ | I really, really, really don't recommend using '' | ||
+ | ==== Mounting a DVD Image ==== | ||
+ | |||
+ | For one reason or another, you may want to mount the image file directly. | ||
+ | |||
+ | Mount a DVD image to ''/ | ||
+ | |||
+ | < | ||
+ | mount -t udf -o ro dvd.iso /mnt/dvd | ||
+ | </ |