-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Steve Dibb edited this page Mar 16, 2022
·
18 revisions
The bluray_info project contains a collection of programs to access information about Blu-rays and extract content.
Programs include:
- bluray_info - display information about a Blu-ray in human-readable, JSON, or OGM chapter formats.
- bluray_copy - copy tracks, chapters, from a Blu-ray to a file or stdout
- bluray_player - a small Blu-ray player using libmpv as backend
The two libraries that need to be installed for bluray_info to work is libbluray and libaacs.
You will need **automake** and **autoconf** to build configure scripts. Once they are built, you can run configure, make, make install as normal:
autoreconf -fi
If you want to build bluray_player you will need **libmpv** installed on your system. Then, pass the build option to configure.
./configure --with-libmpv
Blu-ray path can be a device, a filename, or a directory. With no argument, the default device for your operating system will be used.
bluray_info /dev/sr0 bluray_info movie.iso bluray_info Media/Blu-ray-Movie/
bluray_info has been tested on GNU/Linux, OpenBSD, FreeBSD, and NetBSD.