How To Install futatabi on Ubuntu 22.04

In this tutorial we learn how to install futatabi on Ubuntu 22.04. futatabi is multicamera slow motion video server

Introduction

In this tutorial we learn how to install futatabi on Ubuntu 22.04.

What is futatabi

futatabi is:

Futatabi is a video server and multitrack recorder, made to work in tandem with Nageru. It can record multiple video tracks in sync and play back selected clips from them in slow motion. Futatabi uses GPU-based interpolation to provide smooth motion without the use of a high-speed camera (the quality will depend on the type of content and on the speed of the GPU in use).

There are three methods to install futatabi on Ubuntu 22.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 futatabi Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install futatabi

Install futatabi Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install futatabi

Install futatabi 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 futatabi using aptitude by running the following command:

sudo aptitude -y install futatabi

How To Uninstall futatabi on Ubuntu 22.04

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

sudo apt-get remove futatabi

Uninstall futatabi And Its Dependencies

To uninstall futatabi and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove futatabi

Remove futatabi Configurations and Data

To remove futatabi configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge futatabi

Remove futatabi configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge futatabi

References

Summary

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