How To Install libsbsms-dev on Ubuntu 18.04

In this tutorial we learn how to install libsbsms-dev on Ubuntu 18.04. libsbsms-dev is Subband Sinusoidal Modeling Synthesis (development files)

Introduction

In this tutorial we learn how to install libsbsms-dev on Ubuntu 18.04.

What is libsbsms-dev

libsbsms-dev is:

libsbsms is a C++ library for high quality time stretching and pitch scaling of audio. It uses octave subband sinusoidal modeling.

The audio is fed into a FIFO, which takes the STFT of the input. Each frame is high-pass filtered in the Fourier domain, and then written to a frame FIFO which does quadratic interpolating peak detection and track continuation. The tracks are resynthesized with a quadratic phase preserving oscillator bank at an arbitrary time scale.

The subbands are fed from the low-pass filtered frames, which are decimated by two and reconstructed in a half rate time domain. The subbands perform the same process as the parent band, only the data is at half the audio frequency, and at half the rate. There are typically 6 bands. The point of subbands is to allow high time resolution for high frequencies and at the same time high frequency resolution for low frequencies.

Pitch scaling is performed in a post-processing resampling step.

This package contains the development files.

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

Install libsbsms-dev Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libsbsms-dev

Install libsbsms-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libsbsms-dev

Install libsbsms-dev 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libsbsms-dev

How To Uninstall libsbsms-dev on Ubuntu 18.04

To uninstall only the libsbsms-dev package we can use the following command:

sudo apt-get remove libsbsms-dev

Uninstall libsbsms-dev And Its Dependencies

To uninstall libsbsms-dev and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libsbsms-dev

Remove libsbsms-dev Configurations and Data

To remove libsbsms-dev configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libsbsms-dev

Remove libsbsms-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libsbsms-dev

References

Summary

In this tutorial we learn how to install libsbsms-dev package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.