Try setting the drive to Performance mode.
Right click inside the MakeMKV program folder and open a PowerShell terminal (Windows only, see below for Linux)
Do the following the see the current drive speed setting :
Code: Select all
.\makemkvcon64.exe f -d E: -t pioneer speed get
or
Code: Select all
.\sdftool64.exe -d E: -t pioneer speed get
Replace E: with your drive letter if it isn't the correct one (it could also be D: or F: and so on).
Once you have the drive speed, if it is not set to Performance, do the following :
Code: Select all
.\makemkvcon64.exe f -d E: -t pioneer speed set 1
or
Code: Select all
.\sdftool64.exe -d E: -t pioneer speed set 1
Replacing E: with the correct drive letter as needed.
This should set the drive to Performance mode.
(For the record, I've just checked the values, 0 should be Default, 1 should be Performance, and 2 should be Quiet. 2 is for playing Blu-ray discs quietly with software such as Cyberlink, VLC or Kodi and should never be used for ripping.)
Also make sure that the drive is getting enough power, you might have gotten a USB-A to USB-C adapter with your BDR-UD04, don't be afraid to use that to connect the drive to a USB-C port on a laptop, for example.
If using Linux, do *not* use a makemkv-bin version newer than 1.17.7 and do this instead (this does not need to be done from a specific folder) :
Code: Select all
makemkvcon f -d /dev/sr0 -t pioneer speed get
or
Code: Select all
sdftool -d /dev/sr0 -t pioneer speed get
Replacing /dev/sr0 with the correct device path as needed to get the drive speed.
Then, to set the drive speed mode to Performance :
Code: Select all
makemkvcon f -d /dev/sr0 -t pioneer speed set 1
or
Code: Select all
sdftool -d /dev/sr0 -t pioneer speed set 1
Replacing /dev/sr0 with the correct device path as needed.
EDIT : Once you have done this, if you're on Linux, you can switch back to makemkv-bin-1.18.4 afterwards.