Step-by-step instructions
- 1
Check the audio codec in your video
The extraction method depends on the audio codec in your video. For MP4 files: the audio is almost always AAC. For MKV: could be AAC, MP3, AC3, DTS, or FLAC. For MOV (iPhone): AAC. You can check in VLC: Media → Codec Information → look at the Audio section. Knowing the codec helps you choose lossless extraction vs. re-encoding.
Go to converter - 2
Method 1: Browser converter (simplest)
Go to formatdrop.com → Audio Converter (or Video Converter). Drop your video file. Select MP3 or AAC as output. The tool extracts and converts the audio track. Best for casual extraction where you need an MP3 output regardless of source codec.
- 3
Method 2: VLC
VLC → Media → Convert/Save → Add your video file → click Convert/Save. In the Profile dropdown, select 'Audio - MP3' or 'Audio - AAC'. Importantly: in the profile settings, deselect the Video checkbox so only audio is processed. Set output filename with .mp3 or .aac extension. Click Start.
- 4
Method 3: FFmpeg lossless extraction (best quality)
For an MP4 with AAC audio, extract AAC losslessly: ffmpeg -i input.mp4 -vn -c:a copy output.aac. The '-vn' drops the video; '-c:a copy' copies the audio stream without re-encoding. The output .aac file is bit-for-bit identical to the audio in the MP4. To extract as MP3 (re-encoding required): ffmpeg -i input.mp4 -vn -c:a libmp3lame -q:a 2 output.mp3
- 5
Method 4: Audacity (for editing and export)
Audacity (audacityteam.org, free) can import video files and extract audio. File → Import → Audio → select your video. Audacity displays the audio waveform. You can trim, clean, or edit it. Then File → Export → Export as MP3 (or WAV, FLAC, OGG). Audacity requires the FFmpeg library for video import — install it from the Audacity preferences.
Why convert MP4 to MP3?
Audio extraction is one of the most common media conversion tasks: pulling a song from a music video, getting the audio track from a lecture recording for podcast listening, extracting interview audio for transcription, or archiving the audio commentary from an old DVD. If the video's audio codec matches your desired output (e.g., extracting AAC from an MP4 to an AAC file), the operation is instant and lossless. If you need MP3 output from an AAC source, re-encoding is required but modern encoders produce excellent MP3 quality.
Your files never leave your device
FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.
Frequently asked questions
Is it possible to extract audio from video without quality loss?
How do I extract multiple audio tracks from an MKV?
Can I extract audio from YouTube videos?
No account. No upload. Works in any browser.