Skip to content

FFmpeg Auto-Install

Medix needs ffmpeg and ffprobe to do actual conversion, but you don’t have to install them first. On every run, Medix checks whether both binaries are on PATH. If not, it:

  1. Detects your operating system and architecture
  2. Probes for a supported package manager
  3. Offers to run the right install command for you

You can always say no and install manually.

Supported managers

PlatformDetected managers
macOSHomebrew, MacPorts
Debian / UbuntuAPT
Fedora / RHEL / CentOSDNF, YUM
Arch Linux / ManjaroPacman
Windowswinget, Chocolatey, Scoop

Manual install reference

If you’d rather install FFmpeg yourself:

macOS

Terminal window
brew install ffmpeg

Ubuntu / Debian

Terminal window
sudo apt update
sudo apt install ffmpeg

Fedora

Terminal window
sudo dnf install ffmpeg

RHEL / CentOS

Enable RPM Fusion first, then:

Terminal window
sudo dnf install ffmpeg

Arch Linux

Terminal window
sudo pacman -S ffmpeg

Windows — winget

Terminal window
winget install Gyan.FFmpeg

Windows — Chocolatey

Terminal window
choco install ffmpeg

Windows — Scoop

Terminal window
scoop install ffmpeg

Verifying the install

Terminal window
ffmpeg -version
ffprobe -version

Both should print version info. If either says “command not found”, make sure your shell has re-loaded PATH after install (open a new terminal).

Troubleshooting

“FFmpeg is installed but Medix can’t find it” — make sure it’s on PATH. On Windows, check Environment Variables → PATH. On macOS/Linux, run which ffmpeg — it should print a path.

“Package manager not detected” — Medix falls back to printing manual install instructions for your platform. File an issue if you think a manager should be supported.