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:
- Detects your operating system and architecture
- Probes for a supported package manager
- Offers to run the right install command for you
You can always say no and install manually.
Supported managers
| Platform | Detected managers |
|---|---|
| macOS | Homebrew, MacPorts |
| Debian / Ubuntu | APT |
| Fedora / RHEL / CentOS | DNF, YUM |
| Arch Linux / Manjaro | Pacman |
| Windows | winget, Chocolatey, Scoop |
Manual install reference
If you’d rather install FFmpeg yourself:
macOS
brew install ffmpegUbuntu / Debian
sudo apt updatesudo apt install ffmpegFedora
sudo dnf install ffmpegRHEL / CentOS
Enable RPM Fusion first, then:
sudo dnf install ffmpegArch Linux
sudo pacman -S ffmpegWindows — winget
winget install Gyan.FFmpegWindows — Chocolatey
choco install ffmpegWindows — Scoop
scoop install ffmpegVerifying the install
ffmpeg -versionffprobe -versionBoth 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.