How To Install enscribe on Debian 10

Learn how to install enscribe on Debian 10 with this tutorial. enscribe is convert images into sounds

Introduction

In this tutorial we learn how to install enscribe on Debian 10.

What is enscribe

enscribe is:

Enscribe converts the scanlines of the input image into frequency components and then using an inverse Fast Fourier Transform, converts them into sound. The left side of the image is the low frequency end, and the right is the high end, up to just under the Nyquist limit if you want it to. There are several tunable parameters as to how colour is converted into stereo sound and the frequency range to be used. This conversion can be used to create resilient audio watermarks or to simply create interesting sounds from images.

There are three methods to install enscribe on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install enscribe Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install enscribe using apt-get by running the following command:

sudo apt-get -y install enscribe

Install enscribe Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install enscribe using apt by running the following command:

sudo apt -y install enscribe

Install enscribe Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install enscribe using aptitude by running the following command:

sudo aptitude -y install enscribe

How To Uninstall enscribe on Debian 10

To uninstall only the enscribe package we can use the following command:

sudo apt-get remove enscribe

Uninstall enscribe And Its Dependencies

To uninstall enscribe and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove enscribe

Remove enscribe Configurations and Data

To remove enscribe configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge enscribe

Remove enscribe configuration, data, and all of its dependencies

We can use the following command to remove enscribe configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge enscribe

Dependencies

enscribe have the following dependencies:

References

Summary

In this tutorial we learn how to install enscribe package on Debian 10 using different package management tools: apt, apt-get and aptitude.