Got the Jeeves and Wooster box set. Popped it into my Pioneer BDR-S13U-X, a Billycar special. Nothing, the disc isn't recognized either by makemkv or even the OS, shows nothing inserted and the drive never spins up. Tried again in an identical drive on another computer, nothing again. Tried on a Buffalo drive, and now te disc is seen, makemkv sees a dual layer dvd in the drive, hooray! But makemkv hangs forever scanning the disc and making no progress before crashing. Hurumph!
So, I fire up a terminal and try dvdbackup. It starts fine, but after reading about 4.7GB (the sharp eyed will note this is the capacity of a single layer disc), it starts throwing read errors and fails. Again, hurumph!
So, after some searching, I realized this was a poorly authored disc, and it was reporting as dual layer when really it was single! The solution is as follows:
Run the following command to get the real size of the disc (substitute the appropriate device for sr1):
Code: Select all
sudo isosize -x /dev/sr1
sector count: 2285861, sector size: 2048
Code: Select all
dd if=/dev/sr1 of=~/jeevesS2D1.iso bs=2048 count=2285861 status=progress
Once complete, you'll have output like:
Code: Select all
4680685568 bytes (4.7 GB, 4.4 GiB) copied, 2371 s, 2.0 MB/s
2285861+0 records in
2285861+0 records out
4681443328 bytes (4.7 GB, 4.4 GiB) copied, 2371.32 s, 2.0 MB/s
Hopefully someone finds this handy should they encounter a similar situation.