Skip to content

Instantly share code, notes, and snippets.

@evantoli
Last active October 30, 2022 19:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evantoli/f8e5ea9ff4face8a03c363c151723ea8 to your computer and use it in GitHub Desktop.
Save evantoli/f8e5ea9ff4face8a03c363c151723ea8 to your computer and use it in GitHub Desktop.

Handbrake and libdvdcss on Mac OSX

A recent release of Mac OS X removes libdvdcss.2.dylib from the /usr/lib directory location.

A solution is to copy it into /usr/local/lib

For Blu-Ray

I first installed MakeMKV. Then I create two symbolic links:

cd ~
mkdir -p ~/lib
ln -s /Applications/MakeMKV.app/Contents/lib/libmmbd.dylib ~/lib/libaacs.dylib
ln -s /Applications/MakeMKV.app/Contents/lib/libmmbd.dylib ~/lib/libbdplus.dylib

It seems that MakeMKV needs to be registered (after the trial period) and started for Handbrake to work.

Remember to restart

The above only worked after I restarted the Mac. I guess the OS might cache dynamic libraries.

Also tried without success

I also tried, without success, the advice located at "how to get your VLC 2.2 to play Blu-Ray"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment