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.

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

If you’d rather install FFmpeg yourself:

Terminal window
brew install ffmpeg
Terminal window
sudo apt update
sudo apt install ffmpeg
Terminal window
sudo dnf install ffmpeg

Enable RPM Fusion first, then:

Terminal window
sudo dnf install ffmpeg
Terminal window
sudo pacman -S ffmpeg
Terminal window
winget install Gyan.FFmpeg
Terminal window
choco install ffmpeg
Terminal window
scoop install ffmpeg
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).

“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.