Are there any stickies/FAQs on replacing the optical drive in a cMP 5,1 with a BluRay drive? I have found the occasional posting on the subject of BluRay drives, but not so much for getting an overview (compatible drives, software etc.)
If you want to play movies, and have anything like the same experience a standalone bluray player offers (menus etc) the app you need is on the Mac App Store, and it’s about US$60. Blue ray for watching movies on the mac, as opposed to ripping / transcoding and watching from disk is a pretty neglected scene, from what I can tell (was researching this last week).Are there any stickies/FAQs on replacing the optical drive in a cMP 5,1 with a BluRay drive? I have found the occasional posting on the subject of BluRay drives, but not so much for getting an overview (compatible drives, software etc.)
The Blu-ray drives mentioned above include a separate red laser for playing and writing CDs and DVDs so will work fine, no additional software required.Useful info -thanks!
If I'm playing or burning CDs or DVDs, will the BluRay drive act just as with the regular optical drive, or do you still need additional software for those things too?
I found this thread because of this specific post when I started to encounter issues.I can't really recommend the Pioneer BDR-212DBK as it has a couple of problems on macOS, but, it is the most reliable blu-ray writer of the three.
drutil status
drutil info
0,5,10,15,20,25,30,35,40,45,50,55 * * * * drutil tray close
stdbuf -oL drutil poll | sed -n '/DRDeviceStatusChangedNotification/ {
N
/DRDeviceIsTrayOpenKey/ {
s/\n/ /
p
}
}'
while IFS= read -r line
do
echo $line
done
I've never used theIf this approach does prove to be sound, ideally a script which pauses the closing commands when a recent open event has happened can mitigate this solution's main caveat. Unfortunately it doesn't seem the drive's tray state is determinable by any command...
drutil
command before.trayState
element in the results from drutil status -xml
open
or do nothing? If it's closed then use close
.drutil list -xml
result. Then for each device, grab the index
and get the status
using -drive $index
.-drive $index
for the tray
command.-drive
) can work because the result doesn't include an index
for each device?