dtsdec command not found

In this troubleshooting guide we learn how to fix dtsdec command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

dtsdec: command not found

or when using sudo you get the following error message

sudo: dtsdec: command not found

Solutions to dtsdec: command not found

How To Fix dtsdec: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dtsdec is provided by libdca-utils package.

libdca-utils is:

libdca provides a low-level interface to decode audio frames encoded using DTS Coherent Acoustics. DTS Coherent Acoustics streams are commonly found on DVDs, DTS audio CDs and some radio broadcastings. libdca also provides downmixing and dynamic range compression for various output configurations.

This package contains additional utilities.

To fix this problem, we can install more using the command below.

sudo apt-get -y install libdca-utils

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libdca-utils.

sudo apt -y install libdca-utils

Or if you have aptitude installed you can use the following command.

sudo aptitude install libdca-utils

Summary

In this tutorial we learn how to fix dtsdec command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.