typeset_audio_dir command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
typeset_audio_dir: command not found
or when using sudo you get the following error message
sudo: typeset_audio_dir: command not found
Solutions to typeset_audio_dir: command not found
How To Fix typeset_audio_dir: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu typeset_audio_dir is provided by libmp3-tag-perl package.
libmp3-tag-perl is:
MP3::Tag is a wrapper module to read different tags of mp3 files. It provides an easy way to access the functions of separate modules which do the handling of reading/writing the tags itself.
At the moment MP3::Tag::ID3v1 and MP3::Tag::ID3v2 are supported.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libmp3-tag-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libmp3-tag-perl.
sudo apt -y install libmp3-tag-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libmp3-tag-perl
Summary
In this tutorial we learn how to fix typeset_audio_dir command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.