How to Convert Media with FFmpeg

This wikiHow teaches you how to use FFmpeg to convert video and audio from your computer's Command Prompt (Windows) or Terminal (Mac, Linux). Install FFmpeg if it isn't already installed. You can install FFmpeg on your Windows computer for...
Method 1 of 3:

Using Windows

  1. How to Convert Media with FFmpeg Picture 1How to Convert Media with FFmpeg Picture 1
    Install FFmpeg if it isn't already installed. You can install FFmpeg on your Windows computer for free, though the installation process itself can be tricky.
    1. You'll need to be on an administrator account to install FFmpeg.
  2. How to Convert Media with FFmpeg Picture 2How to Convert Media with FFmpeg Picture 2
    Find a video or song to convert. You can use FFmpeg to change both videos and songs into different compatible formats (i.e., you can change a video into another video format or an audio file into another audio format).
    1. You can also turn video files into audio files by using FFmpeg.
  3. How to Convert Media with FFmpeg Picture 3How to Convert Media with FFmpeg Picture 3
    Copy the video or song. Select the song, then press Ctrl+C.
    1. You'll do this so that you have a backup copy of the original file in case something goes wrong.
  4. How to Convert Media with FFmpeg Picture 4How to Convert Media with FFmpeg Picture 4
    Place the video or song on your desktop. Go to your computer's desktop, then press Ctrl+V.
    1. By doing this, your file will be in an easily accessible place when you go to convert it.
  5. How to Convert Media with FFmpeg Picture 5How to Convert Media with FFmpeg Picture 5
    Determine your file's current format. You can do this by right-clicking the file, clicking Properties, and reviewing the format in parentheses next to the "Type of file" heading.
    1. You'll need to know your file's current format in order to tell FFmpeg which file to convert.
  6. How to Convert Media with FFmpeg Picture 6How to Convert Media with FFmpeg Picture 6
    Figure out what you want to convert the file into. You can convert video-to-video, video-to-audio, and audio-to-audio using the following formats:[1]
    1. Video - MP4, MOV, WEBM, FLV, AIFF, and AVI are all common video formats which are supported by FFmpeg.
    2. Audio - MP3, WAV, WMA, M4A, AAC, and OGG are all common audio formats which are supported by FFmpeg.
  7. How to Convert Media with FFmpeg Picture 7How to Convert Media with FFmpeg Picture 7
    Note your file's name. Click your file once to see its full name. You'll need to enter the file's full name into FFmpeg.
    1. You might consider renaming your file to a one-word name in order to make the conversion process easier. You can do this by right-clicking the file, clicking Rename, and entering a new name.
  8. How to Convert Media with FFmpeg Picture 8How to Convert Media with FFmpeg Picture 8
    Open Command Prompt. Command Prompt comes installed on all Windows computers. To open it, do the following:
    1. Click Start
      How to Convert Media with FFmpeg Picture 9How to Convert Media with FFmpeg Picture 9
    2. Type in command prompt
    3. Click
      How to Convert Media with FFmpeg Picture 10How to Convert Media with FFmpeg Picture 10
      Command Prompt
  9. How to Convert Media with FFmpeg Picture 11How to Convert Media with FFmpeg Picture 11
    Switch your command line to the Desktop. Type in cd Desktop and press Enter. This will tell Command Prompt to look for any files that you mention in the Desktop folder.
  10. How to Convert Media with FFmpeg Picture 12How to Convert Media with FFmpeg Picture 12
    Enter the conversion command. The conversion command starts with ffmpeg -i and then includes your file's current name and file type as well as whatever you want the converted file name and file type to be.
    1. For example, to convert an MP4 video called "Kitties" into a WAV file called "Cats", you would type in ffmpeg -i Kitties.mp4 Cats.wav here.
    2. 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).
    3. If your file name uses spaces, you can place the video's name and extension in quotes. For example, YouTube Drama.mp4 would become "YouTube Drama.mp4" (placing underscores doesn't work if they aren't in the title).
  11. How to Convert Media with FFmpeg Picture 13How to Convert Media with FFmpeg Picture 13
    Press Enter. As long the file into which you're converting the original file is a valid format—and your original file's name is correct—the file will begin converting.
    1. Converting files (especially videos) can take a large amount of time. If you're converting a large video or audio file, just be sure to keep Command Prompt open until you see the "C:UsersNameDesktop>" line appear.
  12. How to Convert Media with FFmpeg Picture 14How to Convert Media with FFmpeg Picture 14
    View your converted file. Once your file finishes converting, you'll see it on the Desktop under the name that you entered for it.
Method 2 of 3:

Using Mac

  1. How to Convert Media with FFmpeg Picture 15How to Convert Media with FFmpeg Picture 15
    Make sure that FFmpeg is installed. Unlike on a Windows computer, FFmpeg is easiest to install as part of the Homebrew package manager, which you can quickly install via Terminal:[2]
    1. Go to https://brew.sh/ in your browser.
    2. Copy the code below the "Install Homebrew" heading by selecting it and then pressing Command+C.
    3. Open Spotlight
      How to Convert Media with FFmpeg Picture 16How to Convert Media with FFmpeg Picture 16
      , type in terminal, and double-click Terminal
    4. Paste in the copied code by pressing Command+V.
    5. Press Return, then wait for the installation to complete.
    6. Type in brew install ffmpeg and press Return.
  2. How to Convert Media with FFmpeg Picture 17How to Convert Media with FFmpeg Picture 17
    Find a video or song to convert. You can use FFmpeg to change both videos and songs into different compatible formats (i.e., you can change a video into another video format or an audio file into another audio format).
  3. How to Convert Media with FFmpeg Picture 18How to Convert Media with FFmpeg Picture 18
    Copy the video or song. Select the file and then press Command+C to do so.
    1. You'll do this so that you have a backup copy of the original file in case something goes wrong.
  4. How to Convert Media with FFmpeg Picture 19How to Convert Media with FFmpeg Picture 19
    Place the video or song on your desktop. Go to your computer's desktop, then press Command+V. You should see the file appear here.
    1. By doing this, your file will be in an easily accessible place when you go to convert it.
  5. How to Convert Media with FFmpeg Picture 20How to Convert Media with FFmpeg Picture 20
    Determine your file's current format. You can do this by clicking the file to select it, clicking File, clicking Get Info, and looking at the extension on the end of the file name (e.g., ".mp4").
  6. How to Convert Media with FFmpeg Picture 21How to Convert Media with FFmpeg Picture 21
    Figure out a target format. You can convert video-to-video, video-to-audio, and audio-to-audio using the following formats:
    1. Video - MP4, MOV, WEBM, FLV, AIFF, and AVI are all common video formats which are supported by FFmpeg.
    2. Audio - MP3, WAV, WMA, M4A, AAC, and OGG are all common audio formats which are supported by FFmpeg.
  7. How to Convert Media with FFmpeg Picture 22How to Convert Media with FFmpeg Picture 22
    Note your file's name. Click your file once to see its full name. You'll need to enter the file's full name into FFmpeg.
  8. How to Convert Media with FFmpeg Picture 23How to Convert Media with FFmpeg Picture 23
    Open Terminal. If you closed Terminal after installing FFmpeg, you can re-open it by clicking Spotlight
    How to Convert Media with FFmpeg Picture 24How to Convert Media with FFmpeg Picture 24
    , typing in terminal, and double-clicking
    How to Convert Media with FFmpeg Picture 25How to Convert Media with FFmpeg Picture 25
    Terminal.
  9. How to Convert Media with FFmpeg Picture 26How to Convert Media with FFmpeg Picture 26
    Switch your command line to the Desktop. Type in cd desktop and press Return. This will tell Terminal to look for any files that you mention in the Desktop folder.
  10. How to Convert Media with FFmpeg Picture 27How to Convert Media with FFmpeg Picture 27
    Enter the conversion command. The conversion command starts with ffmpeg -i and then includes your file's current name and file type as well as whatever you want the converted file name and file type to be.
    1. For example, to convert an MP4 video called "Kitties" into a WAV file called "Cats", you would type in ffmpeg -i Kitties.mp4 Cats.wav here.
    2. 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).
    3. If your file name uses spaces, you can place the video's name and extension in quotes. For example, YouTube Drama.mp4 would become "YouTube Drama.mp4" (placing underscores doesn't work if they aren't in the title).
  11. How to Convert Media with FFmpeg Picture 28How to Convert Media with FFmpeg Picture 28
    Press Return. As long as the formats are compatible and the file name for the original file is correct, doing so will prompt FFmpeg to begin converting your file.
    1. Converting files (especially videos) can take a large amount of time. If you're converting a large video or audio file, just be sure to keep Terminal open until a new, blank line appears at the bottom.
  12. How to Convert Media with FFmpeg Picture 29How to Convert Media with FFmpeg Picture 29
    View your converted file. Once your file finishes converting, you'll see it on the Desktop under the name that you entered for it.
Method 3 of 3:

Using Linux

  1. How to Convert Media with FFmpeg Picture 30How to Convert Media with FFmpeg Picture 30
    Open the terminal. How to do this varies across the different Linux distributives, but you usually need to find a program that has a dark screen with some bright characters on it as an icon. It is usually labelled as something like "Terminal" or "Console".
    1. On a few systems, you can open it by pressing Ctrl+Alt+T.
  2. How to Convert Media with FFmpeg Picture 31How to Convert Media with FFmpeg Picture 31
    Make sure that FFmpeg is installed. If you're not sure whether you have it installed, type ffmpeg -version into the terminal. If this raises an error, you don't have FFmpeg installed. In that case, the easiest option is to use your package manager to install it.
    1. On Debian, Ubuntu and other systems that use APT, type sudo apt-get install ffmpeg.
  3. Figure out a target format. You can convert video-to-video, video-to-audio, and audio-to-audio using the following formats:
    1. Video - MP4, MOV, WEBM, FLV, AIFF, and AVI are all common video formats which are supported by FFmpeg.
    2. Audio - MP3, WAV, WMA, M4A, AAC, and OGG are all common audio formats which are supported by FFmpeg.
  4. How to Convert Media with FFmpeg Picture 32How to Convert Media with FFmpeg Picture 32
    Locate the file that you want to convert. If you approximately know where it is, you can navigate into the directory using cd dir_name for changing into a directory and ls for listing the contents of the current directory.
  5. How to Convert Media with FFmpeg Picture 33How to Convert Media with FFmpeg Picture 33
    Enter the conversion command. The conversion command follows the format ffmpeg -i source_file target_file. Be prepared to wait a long time, especially if you're converting a long and/or high-quality video.
    1. For example, to convert an MP4 video called "Kitties" into an OGG video called "Cats", you would type ffmpeg -i Kitties.mp4 Cats.ogg.
    2. If you want to convert video to audio, add the -vn option to tell FFmpeg that you don't need a video. Try also adding the option -acodec copy to avoid audio quality loss, although that may not always be possible. For example, to convert an MP4 video called "Kitties" into a WAV audio file called "Kitty-sounds", you would type ffmpeg -i Kitties.mp4 -vn -acodec copy Kitty-sounds.wav.
    3. By default, FFmpeg outputs a lot of text during the conversion. If you don't want to see it, you can add the -loglevel panic option to tell FFmpeg to only print serious errors and questions.
    4. 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). The Linux terminal is case-sensitive, so it won't open your file otherwise. If your file name uses spaces, you can place the video's name and extension in quotes. For example, YouTube Drama.mp4 would become "YouTube Drama.mp4" (placing underscores doesn't work if they aren't in the title).
  6. How to Convert Media with FFmpeg Picture 34How to Convert Media with FFmpeg Picture 34
    View your converted file.
    1. To open the new file from the terminal, try mpv file_name, vlc file_name or totem file_name. These are some common video players for Linux, although it is possible that you don't have any of these installed. If you know how to open any other video player from the terminal, you can also use that.
    2. You can also open the file manager, navigate to the directory where the original and now also the converted file is, and double-click on the converted file. This should open it with the default video player of the system.
5 ★ | 1 Vote