Installation
For the quickstart, you will need:
ffmpegandffprobe6.x- GNU make
- Optional: A text editor such as VS Code
Windows 11
- Install scoop if you do not already have it installed.
- Install
ffmpegandmakeusing scoop:scoop install ffmpeg make - Verify your installation by running an
ffmpegcommand and amakecommand such as the following:# Check ffmpeg version
ffmpeg -version
# Check the make version
make --version
Mac OS
- Install Homebrew if you do not already have it installed.
- Install
ffmpegusing Homebrew:brew install ffmpeg - Verify your installation works by running an
ffmpegcommand such as the following:# Check ffmpeg version
ffmpeg -version
Linux
- Download the latest
ffmpegstatic build hosted by John Van Sickle:# Create a temporary folder to save downloads
mkdir ffmpeg-download
cd ffmpeg-download
# Download ffmpeg
wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz
# Download the MD5 and perform an integrity check
wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5
md5sum -c ffmpeg-git-amd64-static.tar.xz.md5 - Unzip it:
tar xvf ffmpeg-git-amd64-static.tar.xz - Copy the files over to a folder in
PATH:# Copy binaries over to ~/.local/bin (you may use a different place to store the binaries)
cd ffmpeg-git-*
cp * ~/.local/bin - Verify your installation works by running an
ffmpegcommand such as the following:# Check ffmpeg version
ffmpeg -version