bd_splice command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bd_splice: command not found
or when using sudo you get the following error message
sudo: bd_splice: command not found
Solutions to bd_splice: command not found
How To Fix bd_splice: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bd_splice is provided by libbluray-bin package.
libbluray-bin is:
libbluray is an open-source library designed for Blu-Ray Discs playback for media players, like VLC or MPlayer. This research project is developed by an international team of developers from Doom9. libbluray integrates navigation, playlist parsing, menus, and BD-J.
NB: Most commercial Blu-Ray are restricted by AACS or BD+ technologies and this library is not enough to playback those discs.
This package provides a simple tool to retrieve information about a Blu-ray.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libbluray-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libbluray-bin.
sudo apt -y install libbluray-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libbluray-bin
Summary
In this tutorial we learn how to fix bd_splice command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.