AudioUtils

Extract Audio from MP4 Without Software (Browser Method)

Extract audio from any MP4 video file using only your browser — no FFmpeg, no downloads, no account needed. Works on Mac, Windows, iPhone, and Android.

Pulling the audio out of an MP4 file is one of the most-asked audio tasks on the web — university lectures recorded as video, podcast episodes published as MP4 alongside the video version, Zoom recordings that need to become an audio-only podcast, screen recordings of YouTube tutorials, concert clips, archived webinars, even old camcorder footage that has aged better as audio than as video. This guide covers the fastest way to do it without installing anything, the format choices that matter, the command-line equivalent for power users, and the edge cases (multiple audio tracks, MOV files, very large videos) that trip people up.

The fastest path is a browser-based converter. Skip ahead to MP4 to MP3, MP4 to WAV or MP4 to M4A depending on what you need the audio for.

What "Extract Audio" Actually Means

An MP4 file is a container. Inside the container live one or more audio streams, one or more video streams, and optional subtitle and metadata tracks. "Extracting" the audio means pulling that audio stream out of the container and writing it to a new file that contains only audio. There are two ways to do this:

1. Remux (no re-encoding). Copy the audio bytes verbatim into a new container. The audio bitstream is unchanged. Lossless, fast, no quality change. 2. Transcode (re-encode). Decode the audio to PCM and re-encode it into a different format (MP3 from AAC, for example). This produces a lossy-to-lossy generation loss but lets you choose any output format.

Most MP4 files contain AAC audio. If your destination is M4A or AAC, you can remux — keep the original quality, just change the wrapper. If your destination is MP3, you have to transcode. If your destination is WAV, you decode AAC to PCM, which is lossless from the AAC stream forward.

This distinction matters because it tells you which output format to pick to preserve the original audio quality.

Browser vs Desktop vs Command Line

Three approaches, three trade-offs:

  • Browser tools (this site, plus a handful of others). No install, runs anywhere there is a browser, audio data never leaves your machine when the tool uses WebAssembly. Speed limited by browser memory and CPU. Practical for files up to a few hundred MB. The right choice for one-off extractions and for users who do not want to install software.
  • Desktop GUIs (VLC, HandBrake, Audacity import). Free, more control, no file size limits beyond your disk. Requires install. The right choice for batch jobs and very large files.
  • Command line (ffmpeg). Maximum control, scriptable, batchable, fastest for large files. Requires comfort with a terminal. The right choice for repeated workflows and automation.

For most readers, the browser is enough. The command-line section below covers the cases where it is not.

Step by Step: Extracting MP4 Audio in the Browser

Using /mp4-to-mp3 (or any of the format-specific tools — the flow is identical):

1. Open the converter in any modern browser. Chrome, Firefox, Safari, Edge all work. iPhone and Android Safari work too. 2. Drop your MP4 file onto the page or click to browse. The file is read into the browser tab — nothing uploads to a server. 3. Pick output settings. For MP3, choose a bitrate (192 kbps is a safe default; 320 kbps for music). For WAV or M4A, the output simply mirrors the source. 4. Click Convert. The conversion runs in WebAssembly — usually faster than real time. A 30-minute lecture typically extracts in 30-90 seconds on a modern laptop. 5. Download the audio file. It saves to your Downloads folder (or to Files on iOS).

The original MP4 is not touched. You can extract multiple files in the same session.

Choosing the Output Format

The right output format depends entirely on what you are going to do with the audio next.

Choose MP3 if...

  • You want to listen on a phone, in a car, on Bluetooth earbuds, or anywhere with general-purpose audio playback.
  • You will share the file with people whose devices you cannot predict.
  • File size matters and you do not need to edit further.
  • You are uploading to a podcast platform that requires MP3.

MP3 transcoding from MP4's AAC introduces a small generation loss. At 192 kbps and above the loss is inaudible to most listeners. Use /mp4-to-mp3.

Choose WAV if...

  • You plan to edit the audio in Audacity, GarageBand, Logic, Reaper, Premiere, Resolve, Final Cut, or any other DAW or NLE.
  • You will run it through transcription (Whisper, Otter, Rev). Most transcription engines accept either format, but WAV avoids any decoder ambiguity.
  • You will process it further (noise reduction, EQ, normalisation) without compounding lossy compression.

WAV decoding from AAC is lossless from the AAC source forward — the audio quality is whatever the original AAC quality was, frozen as PCM. Use /mp4-to-wav.

Choose M4A if...

  • You want the highest possible audio quality — the original AAC stream remuxed without any re-encoding.
  • The audio is destined for Apple devices, Apple Music for Artists upload, or any iOS workflow.
  • You want a small file with native iOS playback.

M4A extraction from MP4 is a pure remux — same AAC bytes, new container. No quality loss. This is technically the best-quality option for playback. Use /mp4-to-m4a. For the Apple ecosystem context, see M4A vs MP3 for iPhone.

What Bitrate Will the Output Have?

For remux to M4A, the output bitrate is the same as the source — typically 128-256 kbps AAC for video files. You cannot increase it; the audio data is what it is.

For transcode to MP3, you choose the output bitrate. A few practical guidelines:

  • 128 kbps MP3 for voice content (lectures, interviews, podcasts) where size matters.
  • 192 kbps MP3 as a sensible default for mixed content. The transparency threshold for most listeners.
  • 256 kbps MP3 for music-heavy content (concert recordings, music videos, soundtrack rips).
  • 320 kbps MP3 when the source AAC is already at 256 kbps and you want minimal additional loss.

Encoding higher than the source AAC bitrate does not improve quality — it only makes a bigger file. A 96 kbps AAC source converted to 320 kbps MP3 is still bound by the original 96 kbps quality. See MP3 128 vs 320 kbps for the deeper explanation.

For WAV, the bitrate is determined by sample rate × bit depth × channels. A standard 16-bit 48 kHz stereo WAV runs at 1,536 kbps regardless of the source AAC quality.

The ffmpeg Command Line for Power Users

When the file is too large for browser conversion or you have many files to process, ffmpeg is the right tool. Install it ('brew install ffmpeg' on Mac, the official Windows builds, your package manager on Linux), then:

Remux to M4A (no re-encoding, fastest, lossless):

'ffmpeg -i input.mp4 -vn -c:a copy output.m4a'

The '-vn' flag drops the video; '-c:a copy' copies the audio stream verbatim. This is essentially instant on any size of file because no decoding or encoding happens.

Transcode to MP3 at VBR ~190 kbps:

'ffmpeg -i input.mp4 -vn -q:a 2 output.mp3'

The '-q:a 2' flag selects LAME VBR V2. Use '-q:a 0' for V0 (~245 kbps) or '-b:a 320k' for fixed 320 kbps CBR.

Decode to WAV:

'ffmpeg -i input.mp4 -vn -acodec pcm_s16le output.wav'

The 'pcm_s16le' codec produces standard 16-bit little-endian PCM. Use 'pcm_s24le' for 24-bit if your source is high-resolution.

Batch convert every MP4 in a folder to MP3:

'for f in *.mp4; do ffmpeg -i "$f" -vn -q:a 2 "${f%.mp4}.mp3"; done'

For a video sitting on YouTube or a streaming platform, do not download the video and extract — most platforms re-encode the audio for streaming and you will get higher quality from a direct audio download. See how to convert YouTube to MP3 legally for the legal context.

Multiple Audio Tracks

Some MP4 files have more than one audio track — typically a main mix plus a director's commentary, or a multilingual film with English, Spanish and French dubs. By default the browser converter and ffmpeg pick the first audio stream. To select a different one with ffmpeg:

'ffmpeg -i input.mp4 -map 0:a:1 -vn -q:a 2 output.mp3'

The '-map 0:a:1' picks the second audio stream (audio streams are zero-indexed). Use 'ffprobe input.mp4' to list all tracks before deciding which one to extract.

MOV Files: Same Process, Same Tools

MOV is Apple's QuickTime container. Internally it is essentially identical to MP4 — both are based on the ISO base media file format (ISOBMFF). iPhone camera recordings, Mac QuickTime screen recordings, Final Cut exports and most older Apple video are MOV files containing AAC audio.

The extraction process is identical. Use /mov-to-mp3 for MP3 output. The same ffmpeg commands work on MOV by changing the input filename.

Preserving Timestamps and Chapter Markers

If your MP4 has chapter markers (audiobooks, lectures with chapter timestamps, podcasts with chapter atoms), they will survive an M4A remux but will be lost on MP3 transcode. ffmpeg can copy chapters explicitly:

'ffmpeg -i input.mp4 -vn -c:a copy -map_chapters 0 output.m4a'

For MP3 you would have to convert chapter atoms to ID3v2 chapter frames, which most automated tools do not do — manual editing in a tool like Mp3tag is the practical workaround for chapter-heavy content.

File Size Limits in the Browser

Browser-based conversion is bounded by the browser's memory limit. In practice the MP4 audio extractors handle files up to about 500 MB comfortably on a desktop and around 200 MB on a phone. Past those sizes, ffmpeg or a desktop GUI is the better tool. A typical 30-minute video lecture is 200-400 MB, so the browser is fine. A 90-minute concert film at 1080p might be 4-6 GB and is a job for ffmpeg.

Summary: The Right Tool for the Job

More to Read

How to Convert Audio Files: Complete GuideHow to Reduce Audio File Size Without Losing QualityHow to Convert iPhone Voice Memo to MP3 FreeHow Audio Compression WorksBest Audio Format for WebsitesHow to Batch Convert Audio FilesHow to Extract Audio from Video FilesDoes Converting MP3 to WAV Improve Quality?How to Convert MP3 to WAV for Music ProductionHow to Convert MP3 to WAV Without Losing QualityHow to Convert MP3 to WAV on Mac and WindowsHow to Convert WAV to MP3 Without Losing QualityWAV File Too Large? Convert to MP3How to Convert iPhone Voice Memo to MP3 FreeHow to Play M4A Files on Android (Convert to MP3)How to Convert FLAC to MP3 Without Losing QualityBest Bitrate for FLAC to MP3 ConversionConvert AAC to MP3: Best Quality SettingsConvert iPhone MOV Video to MP3How to Convert WAV to MP3 (The Complete Guide)How to Convert MOV to MP3 (iPhone & QuickTime)How to Convert MP3 to WAV for Editing and DAWsHow to Convert YouTube to MP3 Legally (3 Ways)Best MP3 to WAV Settings for Editing and DAWsBest WAV to MP3 Bitrate for Music, Podcasts, and VoiceMOV to MP3 on Mac: Fastest Ways ComparedHow to Convert M4A to MP3 on iPhone Without a ComputerHow to Convert FLAC to MP3 on MacHow to Convert FLAC to MP3 on WindowsHow to Convert OGG to MP3 on MacHow to Convert MP4 to MP3 on MacHow to Convert MP4 to MP3 on iPhoneHow to Convert MP4 to MP3 on AndroidHow to Convert WMA to MP3 on MacHow to Convert AIFF to MP3 on MacHow to Convert MOV to MP3 on WindowsM4A to WAV: How to Convert and WhyHow to Convert FLAC to OGG VorbisHow to Convert AAC to WAV for EditingHow to Convert WMA to MP3 on WindowsHow to Convert AIFF to MP3 on WindowsHow to Convert OGG to MP3 on WindowsHow to Convert FLAC to MP3 on iPhoneHow to Convert AAC to MP3 on MacHow to Convert M4A to MP3 on Mac: 3 Easy MethodsHow to Convert Audio Files with AudacityHow to Convert Audio Files with VLCFLAC to AAC: Bitrate Guide and Practical StepsOGG to AAC: Cross-Platform Audio Migration GuideWMA to OGG: Escape the Windows Media EcosystemWMA to FLAC: Lossless Archiving of Your Old WMA LibraryFLAC to Opus: Web Streaming Optimization GuideAIFF to M4A: Apple Production Workflow GuideWAV to AIFF: Windows to Mac Audio WorkflowHow to Convert AAC to MP3 on iPhoneHow to Convert FLAC to MP3 on AndroidHow to Convert OGG to MP3 on AndroidHow to Convert WAV to MP3 on iPhoneHow to Convert AIFF to MP3 on iPhoneHow to Convert M4A to MP3 on WindowsOpus to MP3: Complete Conversion GuideConvert Audio on Linux: Command Line and Browser OptionsHow to Convert Audio Without Installing SoftwareHow to Convert WMA to MP3 on Mac (Step-by-Step Guide)OGG to FLAC: What to Expect from the ConversionAAC to FLAC: Convert and What to ExpectOpus to WAV: How to Convert and Why You Might Need ToWAV to Opus: The Web Developer's Audio GuideBest Audio Format for Speech-to-Text TranscriptionBest Audio Format for WhatsApp Voice MessagesAudio Formats Windows Media Player Plays NativelyAudio Formats VLC Supports and Its Conversion FeaturesAudio Formats Foobar2000 SupportsAudio Formats Plex Media Server SupportsKodi Audio Format: What Works & What Needs ConversionAudio Formats for PS4 and PS5 USB PlaybackAudio Formats for Xbox USB PlaybackAudio on Nintendo Switch: Limitations and WorkaroundsHow to Play FLAC on iPhone (iOS 11 and Later)How to Play FLAC on Android NativelyWAV to FLAC: Converting Without Any Quality LossAIFF to WAV: macOS to Windows Audio WorkflowM4A to OGG: Converting Apple Audio to Open-SourceOpus Bitrate Guide: 32, 64, 96, 128, 192 kbps ExplainedReduce Audio File Size Without Losing QualityAudio Format Support on Raspberry Pi with mpd and mopidyBest Audio Format in 2025: The Definitive GuideIs yt-dlp Legal? What You Need to KnowLegal Ways to Download Music for Offline ListeningCreative Commons Music for Content Creators: Full GuideWMA to MP3: What to Expect and How to ConvertAIFF to MP3: GarageBand Exports and Quality SettingsHow to Batch Convert Audio Files: FFmpeg & BrowserHow to Convert iPhone Voice Memo to MP3 (Free, No App)How to Convert Zoom Recording to MP3 (M4A or MP4 Export)How to Convert Google Meet Recording to MP3How to Extract Audio from a Zoom Webinar RecordingHow to Compress Audio in Audacity: Size & DynamicsFFmpeg Compress Audio: MP3, FLAC, Opus & AAC One-LinersCompress MP3 Without Losing Quality: What's PossibleHow to Make a Ringtone From an MP3 (iPhone & Android)How to Trim an MP3 Without Losing QualityHow to Cut Audio in Audacity (2026 Step-by-Step)How to Merge Audio Files: Three Real MethodsHow to Remove Vocals From a Song (Honest 2026 Guide)How to Record Audio on Mac: 2026 GuideHow to Record Audio on Windows: 2026 GuideHow to Record Audio on iPhone: 2026 GuideHow to Edit MP3 Metadata: Tools & WorkflowsHow to Find BPM of a Song: 5 MethodsHow to Split Audio Files: 3 Methods That WorkWhat Is MP3? The Format ExplainedWhat Is WAV? Everything You Need to KnowWhat Is FLAC? The Lossless Audio FormatWhat Is OGG? The Open Container Format ExplainedWhat Is M4A? Apple's Audio Format ExplainedWhat Is AAC? Advanced Audio Coding ExplainedWhat Is AIFF? Apple's Lossless Audio FormatWhat Is WMA? Windows Media Audio ExplainedAudio Bitrate Explained: What It Means for QualitySample Rate Explained: 44.1kHz vs 48kHz vs 96kHzMP3 vs WAV: Which Format Should You Use?MP3 vs FLAC: Lossy vs Lossless ComparedMP3 vs AAC: Which Codec Sounds Better?MP3 vs OGG (Vorbis): The Complete ComparisonFLAC vs WAV: Lossless Formats ComparedM4A vs MP3: Which Should You Choose?Lossless vs Lossy Audio: The Complete GuideAudio Formats Explained: The Complete GuideBest Audio Format for Music ProductionBest Audio Format for PodcastsBest Audio Format for GamingBest Audio Format for Music StreamingBest Audio Format for Archiving MusicWhy WAV Files Are So Large (And What to Do About It)MP3 vs WAV for Audio Editing in a DAWWhen Should You Convert MP3 to WAV?Convert WAV to MP3 for Sharing and EmailM4A vs MP3: Which Has Better Quality and Smaller Size?What Is M4A? The iPhone Audio Format ExplainedHow to Convert MP3 to OGG for Unity Game DevelopmentOGG vs MP3 for Web Audio: Which Should You Use?WAV vs AIFF: Which Uncompressed Format?AAC vs OGG: Which Lossy Codec Wins?Opus vs MP3: The Modern Codec ShowdownM4A vs AAC: What's the Difference?What Is Opus? The Modern Audio Codec ExplainedMP3 vs WMA: Which Format Should You Choose?AAC vs FLAC: Lossy or Lossless — Which to Choose?OGG vs Opus: What's the Difference?Best Audio Format for Discord in 2026Best Audio Format for Video EditingAudio File Size Comparison: MP3, WAV, FLAC, OGG, AACOpus Audio for Web Developers: A Practical GuidePrivacy-First Audio Conversion: Why Browser-Based MattersAudacity vs AudioUtils: Which Should You Use?AIFF vs FLAC: Which Lossless Format Is Better?WMA vs MP3: Which Sounds Better?OGG vs AAC: Which Audio Codec Is Better?M4A vs OGG: Which Lossy Audio Codec to UseBest Audio Format for Zoom RecordingsBest Audio Format to Use in AudacityBest Audio Format for Voice RecordingWhat Is Vorbis? The Open Audio Codec ExplainedWhat Is ALAC? Apple Lossless Audio ExplainedGarageBand Audio Formats: What to Use and WhyiTunes and Apple Music Audio Formats ExplainedAudio Sample Rates: 44.1, 48, 96 kHz ExplainedWhat Is HLS Audio? HTTP Live Streaming ExplainedAIFF vs. AIF: What Is the Difference?Best Audio Format for iMovie: Import and Export GuideAdobe Premiere Pro Audio Format GuideLogic Pro Audio Guide: Best Import & Export SettingsOBS Studio Audio Format and Settings GuideTwitch Audio Requirements: Format, Bitrate & QualitySpotify Audio Format: What You Need to KnowYouTube Audio Requirements: Quality, Format & LUFSTikTok Audio Requirements: Format, Bitrate, and QualityAndroid Audio Formats: Native Support and Best PracticesiPhone Audio Formats: What iOS Supports & Doesn'tBest Audio Format for Ringtones: iPhone and AndroidBest Audio Format for Car USB: MP3, FLAC, or WAV?MP3 Bitrate Guide: 128 to 320 kbps ExplainedFLAC vs Opus: When to Use Each Audio CodecWAV vs MP3: The Honest Quality ComparisonAAC vs. MP3 for Streaming: Which Is Better?Best Audio Format for AudiobooksFFmpeg vs. AudioUtils: When to Use EachAudio Formats for Podcast Apps: Spotify, Apple, and MoreAudio Bitrate vs. Sample Rate: What's the Difference?Audio Transcoding vs. Converting: What Is the Difference?OGG vs FLAC: Which Should You Use?Opus vs AAC: Which Codec Is Better?WAV vs FLAC for Archiving: Which Is Best?M4A vs FLAC: Apple AAC vs Lossless Quality ComparedMP3 vs AAC for AirPods: Does the Codec Matter?Audio Normalization: Peak vs Loudness — When to Use EachAudio Quality Settings: Bitrate, Sample Rate, Bit DepthMP3 vs. WAV for Podcasting: Which Format to UseBest Audio Format for Discord: Opus, MP3, and File LimitsBest Audio Format for TikTok: Specs and Upload TipsBest Audio Format for Instagram Reels and StoriesAudio Sample Rate Explained: 44.1 vs 48 vs 96kHzFLAC vs. ALAC: Lossless Audio Format ComparisonWhat Is VBR vs CBR? Bit Allocation in Audio EncodingAudio File Too Large? How to Reduce Audio File SizeContainer vs Codec: The Most Confusing Thing in AudioPCM Audio Explained: Why WAV Files Are So LargeVBR vs CBR for MP3: When Each Mode Is the Right ChoiceMP3 128 kbps vs 320 kbps: Does the Difference Matter?FLAC vs WAV for Music Production: The Practical AnswerM4A vs MP3 for iPhone: Which Format to Use and WhenOGG Vorbis vs MP3: Quality, Compatibility & When OGG WinsBest Audio Format for YouTube Uploads in 2026Best Audio Format for Audacity: Import, Edit, and ExportBest Audio Format for Premiere Pro: Timelines & ExportAudio Bitrate Guide: Right Settings for Every Use CaseWhy Is My Audio File So Large? How to Reduce ItLossless Audio: Is It Worth It? The Honest AnswerMP3 File Corrupted: How to Diagnose and Fix ItAudio Format for Spotify: Upload Specs & What HappensBest Free Audio Converter: Browser-Based vs DesktopAudio Compression Explained: File Size vs Dynamic RangeID3 Tags Explained: MP3 Metadata StandardM4A Format Explained: What It Is and When to Use It