How To install FFmpeg and FFprobe

as "root" user

1) Navigate to "bin" folder

cd /usr/local/bin

2) Download FFmpeg & FFprobe static builds

wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz

3) Unpack Archive file and move binary files

tar -xf ffmpeg-release-amd64-static.tar.xz && mv ffmpeg-*-amd64-static/ffmpeg ffmpeg-*-amd64-static/ffprobe . && rm -rf ffmpeg-*-amd64-static ffmpeg-release-amd64-static.tar.xz

4) Set "executable" permissions

chmod 0755 ffmpeg ffprobe

That's it!


as "non-root" user via sudo. (e.g. on Ubuntu or Debian with disabled root Login for security reason.)

1) Navigate to "bin" folder

cd /usr/local/bin

2) Download FFmpeg & FFprobe static builds

sudo wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz

3) Unpack Archive file and move binary files

sudo tar -xf ffmpeg-release-amd64-static.tar.xz && sudo mv ffmpeg-*-amd64-static/ffmpeg ffmpeg-*-amd64-static/ffprobe . && sudo rm -rf ffmpeg-*-amd64-static ffmpeg-release-amd64-static.tar.xz

4) Set "executable" permissions

sudo chmod 0755 ffmpeg ffprobe
  • 7 Users Found This Useful
Was this answer helpful?

Related Articles

How To install Squid Proxy

Debian 9 Update Repo apt-get update Install Squid apt-get install squid Note: IF you...

How To install FFmpeg

FFmpeg Installation is quite simple: Navigate to the FFmpeg Download Website, and Download the...

How To install ionCube Loader

In aaPanel: 1) Open aaPanel and go to App Store > Installed > PHP (The version you've...

How To Install aaPanel (Free Webpanel) incl. LAMP

Connect via SSH to your server and run the corresponding command for your OS. Debian 9:...

Updating CA-Certificates (SSL Root Certificates)

If you get the issue "Invalid License", then it may be due to an outdated SSL Root Certificate....