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. Picture 1 of How to Convert Media with FFmpeg
    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. Picture 2 of How to Convert Media with FFmpeg
    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. Picture 3 of How to Convert Media with FFmpeg
    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. Picture 4 of How to Convert Media with FFmpeg
    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. Picture 5 of How to Convert Media with FFmpeg
    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. Picture 6 of How to Convert Media with FFmpeg
    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. Picture 7 of How to Convert Media with FFmpeg
    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. Picture 8 of How to Convert Media with FFmpeg
    Open Command Prompt. Command Prompt comes installed on all Windows computers. To open it, do the following:
    1. Click Start
      Picture 9 of How to Convert Media with FFmpeg
    2. Type in command prompt
    3. Click
      Picture 10 of How to Convert Media with FFmpeg
      Command Prompt
  9. Picture 11 of How to Convert Media with FFmpeg
    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. Picture 12 of How to Convert Media with FFmpeg
    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. Picture 13 of How to Convert Media with FFmpeg
    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. Picture 14 of How to Convert Media with FFmpeg
    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. Picture 15 of How to Convert Media with FFmpeg
    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
      Picture 16 of How to Convert Media with FFmpeg
      , 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. Picture 17 of How to Convert Media with FFmpeg
    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. Picture 18 of How to Convert Media with FFmpeg
    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. Picture 19 of How to Convert Media with FFmpeg
    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. Picture 20 of How to Convert Media with FFmpeg
    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. Picture 21 of How to Convert Media with FFmpeg
    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. Picture 22 of How to Convert Media with FFmpeg
    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. Picture 23 of How to Convert Media with FFmpeg
    Open Terminal. If you closed Terminal after installing FFmpeg, you can re-open it by clicking Spotlight
    Picture 24 of How to Convert Media with FFmpeg
    , typing in terminal, and double-clicking
    Picture 25 of How to Convert Media with FFmpeg
    Terminal.
  9. Picture 26 of How to Convert Media with FFmpeg
    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. Picture 27 of How to Convert Media with FFmpeg
    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. Picture 28 of How to Convert Media with FFmpeg
    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. Picture 29 of How to Convert Media with FFmpeg
    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. Picture 30 of How to Convert Media with FFmpeg
    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. Picture 31 of How to Convert Media with FFmpeg
    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. Picture 32 of How to Convert Media with FFmpeg
    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. Picture 33 of How to Convert Media with FFmpeg
    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. Picture 34 of How to Convert Media with FFmpeg
    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.
Update 05 March 2020
Category

System

Mac OS X

Hardware

Game

Tech info

Technology

Science

Life

Application

Electric

Program

Mobile