PDF download Download Article
A beginner-friendly guide to the FFmpeg converter & its commands
PDF download Download Article

This wikiHow guide teaches you how to use FFmpeg to convert video and audio from your computer's Command Prompt (Windows) or Terminal (Mac, Linux). We'll also give you helpful examples for converting common audio and video file types, selecting and preserving codecs, controlling conversion quality, and even converting video to audio files or animated GIFs.

FFmpeg Conversion: What to Know

The basic command to convert video or audio in FFmpeg is ffmpeg -i <input file> <output file> . Replace "<input file>" with the name of the file you want to convert, and "<output file>" with the name of the file you're creating.

Section 1 of 6:

Installing FFmpeg

PDF download Download Article
  1. The fastest and easiest way to install FFmpeg on Windows is to use the winget command in Command Prompt. This will also add FFmpeg to your path environment variable, which allows you to run the ffmpeg command without entering the full path.
    • Open the Command Prompt .
    • Type winget install "FFmpeg (Essentials Build)" and press Enter . [1]
    • Wait a few moments for FFmpeg to install.
    • Once you see "Successfully installed," close the Command Prompt window you used to install it. Because the installation added FFmpeg to your path environment variable , you'll need to start with a fresh CMD window to run FFmpeg commands.
  2. FFmpeg is easiest to install as part of the Homebrew package manager, which you can quickly install via Terminal: [2]
    • If you haven’t already done so, install the Xcode Command Line Tools for Apple developers. Homebrew needs some of these tools to operate correctly. Open Terminal and enter the command xcode-select --install . Follow the prompts on the screen to finish the installation.
    • Go to [3] in your browser.
    • Copy the code below the "Install Homebrew" heading by clicking the clipboard icon.
    • Open Spotlight , type in terminal , and double-click Terminal .
    • Paste the copied code by pressing Command + V .
    • Press Return , then wait for the installation to complete.
    • Type in brew install ffmpeg and press Return .
    Advertisement
  3. The easiest way to install FFmpeg is by using a package manager .
    • On Debian, Ubuntu, Linux Mint, and other systems that use Apt, type sudo apt install ffmpeg .
    • If you're using Red Hat, Fedora, CentOS, or another version of Linux that uses the dnf package manager, use sudo dnf install ffmpeg .
  4. Advertisement
Section 2 of 6:

Converting Video and Audio

PDF download Download Article
  1. For example, if the file you want to convert is buried in a deep folder structure, move it to your desktop.
  2. You can do this by right-clicking or control-clicking the file and selecting Properties or Get Info . Look for "Kind" or "Type of file" to determine the file type.
    • You'll need to know your media file's current format to tell FFmpeg which file to convert.
  3. The format is the "container" for the file, typically represented by the extension at the end of the file name (e.g., .mp4). For a full list of formats that FFmpeg can convert media files from and to, type the command ffmpeg -formats and press Enter or Return .You can convert video-to-video, video-to-audio, and audio-to-audio in just about any format, including: [4]
    • Video - MP4, MOV, WEBM, FLV, AIFF, GIF, Matroska (MKV), and AVI
    • Audio - MP3, WAV, WMA, FLAC, M4A, AAC, Matroska (MKA), and OGG
  4. FFmpeg has a command-line interface, so you'll need access to your computer's command line.
    • Windows: Click the Start menu, type cmd , and press Enter .
    • Mac: Click Terminal on your Launchpad or search for it in Spotlight.
    • Linux: Press Ctrl + Alt + T .
  5. For example, if you want to convert a file that's in your Desktop folder, type cd Desktop and press Enter or Return .
    • If you're using OneDrive on Windows to keep your files backed up, it kind of messes with your folder structure. If the media file is on your desktop or in your Downloads folder, use cd OneDrive/Desktop or cd OneDrive/Downloads .
  6. The basic conversion command structure is ffmpeg -i <input file> <output file> . You'll replace <input file> with the name of the file you want to convert (e.g., Kitties.mkv ) and <output file> with the name of the file you want it to produce (e.g., Kitties.mp4 ).
    • For example, to convert a lossless Matroska video called "Kitties.mkv" into an MP4 video file called "Kitties.mp4", you would type in ffmpeg -i Kitties.webm Kitties.mp4 here.
    • The command works the same when converting audio in FFmpeg. For example, to convert an MP3 file called Puppies.mp3 into an OGG file called Puppies.ogg, you'd use ffmpeg -i Puppies.mp3 Puppies.ogg .
    • Be sure to keep your file name exactly as it appears (for example, if your file name uses a capital letter, enter it using the capital letter in the command line).
    • Type your file name exactly as it appears. The terminal is case-sensitive.
    • If your file name contains spaces, you can place the video's name and extension in quotes. For example, YouTube Drama.mp4 would become "YouTube Drama.mp4" .
  7. Media conversion can take a long time, so you'll need to be patient–especially if you're working with larger or lossless file types . As long the file into which you're converting the original file is in a valid format, and your original file's name is correct, the file will begin converting.
    • Don't close the command prompt or terminal window until the file is finished converting.
    • If you don't specify a codec when converting, FFmpeg will determine the codec to use based on the file extension. For example, when converting a video file to MP4, FFmpeg will use the H.264 codec for video and the AAC codec for audio.
    • This is the most basic example of converting in FFmpeg. Depending on the type of video you want to convert and the container and codec you want to convert it to, you may have to enter some additional flags and commands to get the conversion to work exactly as you want. Jump down to Using Codecs for more options and examples.
  8. Advertisement
Section 3 of 6:

Using Codecs

PDF download Download Article
  1. If you don't specify any codecs when converting, FFmpeg will use the default codecs for the file extension of the output file. If you want to specify a codec for your output file, you can do so using the -c:v option for a video codec and -c:a for an audio codec.
    • For example, let's say we want to convert an MP4 video to the AVI format using the H.264 codec:
      • ffmpeg -i input.mp4 -c:v libx264 output.avi
    • Now let's say we want to specify an audio codec. In this example, we'll use the PCM codec for audio, which produces a lossless audio file:
      • ffmpeg -i input.mp4 -c:v libx264 -c:a pcm_s16le output.avi
    • Run the command ffmpeg -encoders to view a list of all installed encoders, along with how you should reference them in your FFmpeg commands.
    • For a list of all FFmpeg-supported codecs, check out the FFmpeg Codec Documentation .
  2. Let's say you want to convert an MP4 file to an AVI file but keep the same codecs from the original file. In this case, you will use the -c copy option. Doing this copies the audio and video streams from the original file to the new file without re-encoding them.
    • In this example, we'll change the container of the file (e.g., change an MP4 to an AVI file) but keep the same codecs from the original file:
      • ffmpeg -i input.mp4 -c copy output.avi
    • But what if we want to keep the same video codec from the original file and change the audio codec?
      • ffmpeg -i input.mp4 -c:v copy -c:a pcm_s16le output.avi
  3. Advertisement
Section 4 of 6:

Controlling Video and Audio Quality

PDF download Download Article
  1. FFmpeg has lots of easy presets for converting videos with certain encoding speed-to-compression ratios. The slower the preset, the better the quality of the resulting file. Using a faster preset converts the file faster, but at the expense of video quality. You can specify a preset using the -preset option. [5]
    • The preset options are ultrafast, superfast, veryfast, faster, fast, medium, slow, slower, and veryslow . Ultrafast is the lowest quality, while veryslow is the best quality.
    • The default preset is medium .
    • In this example, we'll convert a MOV file to MP4 using the H.264 video codec at the best possible video quality and keep the same audio:
      • ffmpeg -i input.mov -c:v libx264 -preset veryslow -c:a copy output.mp4
  2. If you know the bitrate you want to use in your resulting converted file, you can specify it during conversion. For example, if you're starting with a high-quality audio file, such as a FLAC or WAV file, and want to convert it to an MP3 with the best possible quality, you can use the -ab option to specify the bitrate, or the -q:a 0 option to instruct the converter to use the best possible bitrate.
    • In this example, we'll specify 320 kbps for our MP3 file, which is considered "CD quality."
      • ffmpeg -i input.flac -ab 320k output.mp3
    • This time, we'll convert a WAV file to an MP3 file at the best possible audio quality.
      • ffmpeg -i input.wav -q:a 0 output.mp3
        • A -q:a value of 0 is lossless, which means you'll be producing a very large file. You can increase the value (e.g., -q:a 5) to decrease the quality.
  3. When converting video with FFmpeg, you can specify a constant bitrate using the -b:v option, or -crf to set a variable bitrate (which adjusts based on the video content).
    • In this example, we'll specify a bitrate of 2000 kbps (2 Mbps) for an MP4 file:
      • ffmpeg -i input.mp4 -b:v 2000k output.mp4
    • Now we'll use FFmpeg to set a variable bitrate for an MP4 video using the H.264 codec:
      • ffmpeg -i input.mp4 -c:v libx264 -crf 23 output.mp4
        • 23 is the default value.
        • The range for -crf is 0-51, with 0 being lossless and 51 being the lowest quality (but the smallest file size).
        • FFmpeg recommends using values between 17 and 28 as the "sane range." [6]
  4. Advertisement
Section 5 of 6:

Extracting Audio from Video

PDF download Download Article
  1. If you want to create an audio file from the audio in a video file, you can extract the audio from the video in FFmpeg. The most basic way to extract video from audio in FFmpeg follows this format: ffmpeg -i input.mp4 -vn output.mp3 .
    • Let's say we want to create a high-quality MP3 file from the audio in an MP4 video:
      • ffmpeg -i input.mp4 -vn -c:a libmp3lame -q:a 0 output.mp3 [7]
    • If we want to extract audio from an MKV file, you'll want to find out if it contains multiple audio streams. If it does, you can use the -map option to select a stream.
      • To see the audio streams in the MKV file, use ffprobe -i input.mkv -show_streams -select_streams .
      • To extract the second stream and save it as a WAV file, you'd use {{kbd|ffmpeg -i input.mkv -vn -c:a copy -map 0:1 output.wav.
  2. When converting audio files like FLAC and MP3s, you'll lose metadata like artist names and song titles unless you use the -map_metadata option. It's also a good idea to include the -id3v2_version 3 option to ensure the ID3 tags are compatible with most devices.
    • This command will convert a FLAC file to MP3 at the highest possible quality while also preserving its metadata:
      • ffmpeg -i input.flac -q:a 0 -map_metadata 0 -id3v2_version 3 output.mp3
  3. Advertisement
Section 6 of 6:

Converting Video to GIF

PDF download Download Article
  1. To turn a video into a GIF you can share in various apps, you can use the command ffmpeg -i input.mp4 output.gif , just like when converting a video to a different video type. However, depending on the size and length of your original video, you may want to modify your command a bit.
    • Create a GIF from a video beginning at the 15-second mark that plays for a duration of 7 seconds:
      • ffmpeg -ss 00:00:15 -t 7 -i input.mp4 output.gif
    • Create the same GIF as above, but reduce the file size by reducing the frame rate (fps) to 10 fps:
      • ffmpeg --ss 00:00:15 -t 7 -i input.mp4 -r 10 output.gif

Expert Q&A

Ask a Question
      Advertisement

      Video

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Name
      Please provide your name and last initial
      Thanks for submitting a tip for review!

      About This Article

      Article Summary X

      1. Install FFmpeg.
      2. Navigate to a song in your file browser.
      3. Press Control + C to copy it.
      4. Go to your desktop and press Control + V to paste it.
      5. Open the command prompt.
      6. Type "cd desktop" and press Enter .
      7. Type "ffmpeg_i originalfilename newfilename" and press Enter .

      Did this summary help you?
      Thanks to all authors for creating a page that has been read 314,589 times.

      Is this article up to date?

      Advertisement