Find FFmpeg Binary Location on Windows

This article provides a quick and straightforward guide on how to locate the FFmpeg executable (ffmpeg.exe) on a Windows operating system. You will learn how to find its path using the Command Prompt, PowerShell, and Windows File Explorer, which is essential for configuring environment variables, setting up media editing software, or running automated scripts.

Method 1: Using Command Prompt (Quickest)

If FFmpeg is already added to your system’s PATH variable, you can find its exact location instantly using the Command Prompt.

  1. Press Windows Key + R, type cmd, and press Enter.

  2. Type the following command and press Enter:

    where ffmpeg
  3. The Command Prompt will display the full directory path to the ffmpeg.exe file (for example, C:\ffmpeg\bin\ffmpeg.exe).

Method 2: Using PowerShell

PowerShell offers another quick command-line method to locate the executable if it is registered in your system environment.

  1. Right-click the Start menu and select Windows PowerShell or Terminal.

  2. Type the following command and press Enter:

    (Get-Command ffmpeg).Source
  3. This will output the absolute path of the active FFmpeg binary on your system.

Method 3: Search via Windows File Explorer

If the command-line methods do not return a path, FFmpeg is likely not added to your system’s PATH variable. You can search for the file manually using File Explorer.

  1. Open File Explorer (Press Windows Key + E).
  2. Click on This PC in the left sidebar to search your entire computer.
  3. In the search bar in the top-right corner, type ffmpeg.exe and press Enter.
  4. Wait for the search to complete. Once found, right-click on the ffmpeg.exe file and select Open file location to view the directory where it is stored.