Install FFMPEG on Ubuntu 20.04

alrnetwork

Verified User
Joined
Feb 12, 2021
Messages
164
Location
Europe UTC+2
Hi there,

I was hoping someone may be able to provide me the steps for installing FFMPEG on Ubuntu 20.04 via DirectAdmin. Surprised that it wasn't already an option in CustomBuild.

Is there a reason one shouldn't be using it on a DA server?
 
ffmpeg has nothing to do at all with DirectAdmin. It is for multimedia file manipulation. If you want to install it on a DA server, that is up to you, but do note it can use a lot of resources when running and certainly could affect the performance of the server. You can lower the usage if you can use and enable hardware acceleration but then that means you need to install and build a ton of stuff, too many steps and variables to just list here. To install ffmpeg (without hardware acceleration), you would need to ssh into the server and use apt to install it properly (i.e. sudo apt install ffmpeg).
 
Hi,

connect via ssh and run:

Code:
sudo apt install ffmpeg

--

To validate that the package is installed properly use the ffmpeg -version command which prints the FFmpeg version:

Code:
ffmpeg -version

All the best!
 
Back
Top