How To Install FFmpeg For Use With CMD on Windows

FFmpeg is a powerful, free tool that can convert, record, and stream audio and video from the command line. On Windows, that usually means using it with Command Prompt (CMD) or PowerShell.

This guide walks through how to install FFmpeg so that you can run ffmpeg from any CMD window, why each step matters, and where things can vary from one PC to another.

What FFmpeg Is And Why It Needs “Installation” For CMD

FFmpeg is a command‑line program made up of a few key parts:

  • ffmpeg.exe – the main tool you’ll use for converting and processing media
  • ffplay.exe – a simple media player built on FFmpeg
  • ffprobe.exe – a tool for inspecting media files (codecs, bitrates, etc.)

When you first download FFmpeg, it usually comes as a ZIP archive. Just unzipping it isn’t enough for CMD to recognize it. CMD only runs programs it can:

  1. Find in the current folder, or
  2. Find via folders listed in the PATH environment variable

So “installing” FFmpeg for CMD mostly means:

  • Placing FFmpeg somewhere permanent on your drive
  • Adding that folder (or its bin subfolder) to your PATH

Once that’s done, you can type: