ROSI officially supports FFMPEG versions 7 and above. Previous versions may work, but issues with older versions won't be fixed in the app.
Installing FFMPEG on Windows
Windows: Easiest Method (Chocolatey/Winget)
Option 1: Using Chocolatey
Download and install Chocolatey
Once installed, open a new terminal window as an administrator (Right click Windows icon → Terminal (Admin)), then type:
choco install ffmpeg-full
Option 2: Using Winget (Built-in to Windows)
Open a terminal window (Right click Windows icon → Terminal), then type:
winget install ffmpeg
Windows: Manual Install
- Go to FFMPEG.org/download
- Hover your mouse over the Windows Icon and select:
Windows builds from gyan.dev - Scroll down to release builds and download the:
ffmpeg-release-essentials.zipfile - Unzip the folder and place it in a location on your computer (such as your Documents folder)
- Open the FFMPEG folder and look for the
BINfolder within FFMPEG - Click to highlight the
BINfolder - Click the ... menu towards the top of File Explorer → Copy Path (or Home → Copy Path for Windows 10)
- Press the Windows key and search for:
Edit the system environment variables - Press the
Environment Variablesbutton - Select:
Path → Edit... - Select
Newand paste the path. Remove the quotations from the pasted text, then press Enter - Press the OK buttons on every open window until all are closed
- Verify installation by opening terminal and typing:
ffmpeg -version
Installing FFMPEG on MacOS
MacOS: Using Homebrew
- Open terminal and type:
xcode-select --install, then press the install button on the window that pops up - Download and install Homebrew
- Follow the instructions to add Homebrew to your
~/.zprofilepath. (Or watch this video tutorial) - Open terminal and type:
brew install ffmpeg - Verify installation by typing:
ffmpeg -version
Installing FFMPEG on Linux
Linux: Package Manager Installation
Debian/Ubuntu
sudo apt install ffmpeg
Verify installation: ffmpeg -version
Fedora
sudo dnf install ffmpeg
Verify installation: ffmpeg -version
Arch Linux
sudo pacman -S ffmpeg
Verify installation: ffmpeg -version
Homebrew also supports Linux and keeps the most up-to-date versions of FFMPEG!