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.
Steps
Converting Video and Audio
-
Place the video or song file in a convenient location. For example, if the file you want to convert is buried in a deep folder structure, move it to your desktop.
-
Determine your file's current format and name. 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.
-
Figure out which format to convert the file into. 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] X Research source
- Video - MP4, MOV, WEBM, FLV, AIFF, GIF, Matroska (MKV), and AVI
- Audio - MP3, WAV, WMA, FLAC, M4A, AAC, Matroska (MKA), and OGG
-
Open Command Prompt or Terminal. 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 .
-
Enter the folder/directory that contains the file you want to convert. 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 .
-
Enter the conversion command. 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" .
-
Press ↵ Enter or ⏎ Return to start the conversion. 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.
Extracting Audio from Video
-
Convert video to audio. 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] X Research source
- 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.
- Let's say we want to create a high-quality MP3 file from the audio in an MP4 video:
-
Preserve metadata when converting. 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
- This command will convert a FLAC file to MP3 at the highest possible quality while also preserving its metadata:
Expert Q&A
Video
Tips
References
About This Article
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
.