-
Notifications
You must be signed in to change notification settings - Fork 4
FFmpeg Mac
If you drag a clip into Glimpse and see a message pop up that says something like:
"FFmpeg is required to import video files…"
– or –
"Audio decode failed…"
…it just means Glimpse can't find a helper program called FFmpeg on your Mac.
Think of FFmpeg as a translator that lets Glimpse read almost any video or audio format. FFmpeg is only used when importing files that can't be natively converted using Glimpse's built-in tools.
Below are two ways to get it installed.
Homebrew is a free "app installer" that lives in your Terminal.
If you've never used it, open Terminal (spotlight-search "terminal") and paste this line:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"It will ask for your Mac password—that's normal.
When it finishes (it can take a minute or two), paste the next line:
brew install ffmpegAfter the text stops scrolling, quit Terminal, restart Glimpse, and try the import again.
-
Go to https://ffmpeg.org/download.html and click the macOS build (look for a green button or "release" section).
-
Unzip the downloaded folder.
-
You'll see a file called
ffmpeg. Copy it to a folder that's already on your PATH (common choices are/usr/local/binor~/bin).- Not sure what PATH means? The simplest trick is to put
ffmpeginto/usr/local/bin. - If that folder doesn't exist yet, create it with:
- Not sure what PATH means? The simplest trick is to put
sudo mkdir -p /usr/local/bin Then copy the file:
sudo cp ~/Downloads/ffmpeg /usr/local/bin/- Restart Glimpse and try importing your file.
Open Terminal and type:
ffmpeg -versionIf you see a wall of text starting with "ffmpeg version …", you're all set.
If you see "command not found", the file isn't in the right folder yet—go back to step 3 in Option 2.
- Make sure you restart Glimpse after installing.
- Run
ffmpeg -versionin the same Terminal window you use to launch Glimpse (if you open Glimpse from Terminal). - If you installed with Homebrew but Glimpse still complains, close and reopen Terminal once—sometimes the PATH needs a refresh.
If the error keeps appearing, open an issue and paste the exact message you see. We're here to help!