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
-
How 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.- You'll need to be on an administrator account to install FFmpeg.
-
How 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).- You can also turn video files into audio files by using FFmpeg.
-
How to Convert Media with FFmpeg Picture 3
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.
-
How 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.- By doing this, your file will be in an easily accessible place when you go to convert it.
-
How 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.- You'll need to know your file's current format in order to tell FFmpeg which file to convert.
-
How 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]- 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.
-
How 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.- 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.
-
How to Convert Media with FFmpeg Picture 8
Open Command Prompt. Command Prompt comes installed on all Windows computers. To open it, do the following:- Click Start
How to Convert Media with FFmpeg Picture 9
- Type in command prompt
- Click
How to Convert Media with FFmpeg Picture 10
- Click Start
-
How 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. -
How 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.- 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).
-
How 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.- 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.
-
How 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
-
How 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]- Go to https://brew.sh/ in your browser.
- Copy the code below the "Install Homebrew" heading by selecting it and then pressing ⌘ Command+C.
- Open Spotlight
How to Convert Media with FFmpeg Picture 16
- Paste in the copied code by pressing ⌘ Command+V.
- Press ⏎ Return, then wait for the installation to complete.
- Type in brew install ffmpeg and press ⏎ Return.
-
How 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). -
How to Convert Media with FFmpeg Picture 18
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.
-
How 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.- By doing this, your file will be in an easily accessible place when you go to convert it.
-
How 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"). -
How 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:- 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.
-
How 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. -
How to Convert Media with FFmpeg Picture 23
Open Terminal. If you closed Terminal after installing FFmpeg, you can re-open it by clicking SpotlightHow to Convert Media with FFmpeg Picture 24
How to Convert Media with FFmpeg Picture 25
-
How 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. -
How 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.- 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).
-
How 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.- 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.
-
How 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
-
How 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".- On a few systems, you can open it by pressing Ctrl+Alt+T.
-
How 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.- 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.
-
How 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. -
How 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.- 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).
-
How to Convert Media with FFmpeg Picture 34
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.
5 ★ | 1 Vote
You should read it
- How to use the FFmpeg command to process audio and video on Linux
- How to Install FFmpeg on Windows
- How to reduce video file size with FFMPEG from Linux Terminal
- How to Install FFmpeg on Windows
- How to install and add FFmpeg to the path in Windows 10/8/7
- Basic steps for making GIF images from video files
- What is MP4 file? How to open MP4 file?
- How to Convert Video to AVI
- Compress a video file with Virtualdub
- What is AVI file? How to open AVI file?
- How to Add Subtitles to a Downloaded Video
- What is WMV file? How to open, edit and convert WMV files