How to Convert Media with FFmpeg

This minHour teaches you how to use FFmpeg to convert video and audio from your computer's Command Prompt (Windows) or Terminal (Mac, Linux).

Using Windows

Install FFmpeg

You can install FFmpeg on your Windows computer for free, though the installation process itself can be tricky.

  • You’ll need to be on an administrator account to install 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).

  • You can also turn video files into audio files by using FFmpeg.

Copy the video or song.

Select the song, then press Ctrl+C.

  • You’ll do this so that you have a backup copy of the original file in case something goes wrong.

Place the video or song on your desktop.

Go to your computer’s desktop, then press Ctrl+V.

  • By doing this, your file will be in an easily accessible place when you go to convert it.

Determine your file’s current format.

You can do this by right-clicking the file, clicking , and reviewing the format in parentheses next to the “Type of file” heading.

  • You’ll need to know your file’s current format in order to tell FFmpeg which file to convert.

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:

  • Video – MP4, MOV, WEBM, FLV, AIFF, and AVI are all common video formats which are supported by FFmpeg.
  • Audio – MP3, WAV, WMA, M4A, AAC, and OGG are all common audio formats which are supported by 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.

  • 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.

Open Command Prompt.

Command Prompt comes installed on all Windows computers. To open it, do the following:

  • Click Start
  • Type in command prompt
  • Click Command Prompt

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.

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.

  • 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.
  • 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).
  • 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).

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.

  • 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.

View your converted file.

Once your file finishes converting, you’ll see it on the Desktop under the name that you entered for it.

Using Mac

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:

  • Go to https://brew.sh/ in your browser.
  • Copy the code below the “Install Homebrew” heading by selecting it and then pressing .
  • Open Spotlight , type in terminal, and double-click Terminal
  • Paste in the copied code by pressing .
  • Press , then wait for the installation to complete.
  • Type in brew install ffmpeg and press .

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).

Copy the video or song.

Select the file and then press ⌘ Command+C to do so.

  • You’ll do this so that you have a backup copy of the original file in case something goes wrong.

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.

  • By doing this, your file will be in an easily accessible place when you go to convert it.

Determine your file’s current format.

You can do this by clicking the file to select it, clicking , clicking , and looking at the extension on the end of the file name (e.g., “.mp4”).

Figure out a target format.

You can convert video-to-video, video-to-audio, and audio-to-audio using the following formats:

  • Video – MP4, MOV, WEBM, FLV, AIFF, and AVI are all common video formats which are supported by FFmpeg.
  • Audio – MP3, WAV, WMA, M4A, AAC, and OGG are all common audio formats which are supported by 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.

Open Terminal.

If you closed Terminal after installing FFmpeg, you can re-open it by clicking, typing in terminal, and double-clicking.

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.

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.

  • 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.
  • 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).
  • 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).

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.

  • 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.

View your converted file.

Once your file finishes converting, you’ll see it on the Desktop under the name that you entered for it.

Using Linux

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”.

  • On a few systems, you can open it by pressing .

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.

  • On Debian, Ubuntu and other systems that use APT, type sudo apt-get install ffmpeg.

Figure out a target format.

You can convert video-to-video, video-to-audio, and audio-to-audio using the following formats:

  • Video – MP4, MOV, WEBM, FLV, AIFF, and AVI are all common video formats which are supported by FFmpeg.
  • Audio – MP3, WAV, WMA, M4A, AAC, and OGG are all common audio formats which are supported by 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.

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.

  • For example, to convert an MP4 video called “Kitties” into an OGG video called “Cats”, you would type ffmpeg -i Kitties.mp4 Cats.ogg.
  • 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.
  • 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.
  • 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).

View your converted file.

  • 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.
  • 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.

Leave a Comment