What converting MP4 to M4A actually does
MP4 and M4A are the same container family. An MP4 holds a video track and an audio track; an M4A is the audio-only version of the same box, and the codec inside is almost always AAC. Converting means discarding the video track and writing the audio into an M4A, which is what Apple Music, iPhones, iPads, and every mainstream desktop and Android player expect.
Be precise about what happens to the audio. This tool re-encodes it. The audio is decoded and passed through the AAC encoder at the bitrate you pick, so the output is a fresh AAC stream rather than a copy of the original one. It is not a lossless remux, and describing it as one would be wrong.
That matters in one practical way. Because the source audio inside an MP4 is usually already AAC, you are encoding a lossy stream into a lossy stream again. At 192 kbps or higher, with typical music and speech, the difference is inaudible to almost everyone. At low bitrates on already-compressed source material, generation loss becomes real.
- Choose one video or drop it on the page
- Pick M4A and a bitrate, and set a start and end time if you want a section
- Extract locally and download the M4A
Choosing a bitrate, and when M4A beats MP3
The bitrate menu offers 128, 192, 256, and 320 kbps. For spoken word, interviews, lectures, and podcasts, 128 kbps AAC is plenty and keeps the file small. For music, 192 to 256 kbps is transparent for most listeners on most equipment. Choosing 320 costs size without buying much, given the source is already a compressed AAC stream.
AAC is a more efficient codec than MP3, so at the same bitrate an M4A generally sounds better, and at the same perceived quality it is smaller. Inside the Apple ecosystem it is the native choice, and Windows, Android, and every mainstream player of the last decade handle it without extra software.
MP3 wins on one axis only, which is reach into old hardware. Ancient car head units, cheap MP3 players, and some embedded devices know MP3 and nothing else. If the file has to play on something unknown or elderly, pick MP3 from the same format menu. The extractor is identical; only the encoder changes.
Trimming, formats, and where the audio ends up
The start and end fields take milliseconds and default to the full clip once a video loads. Setting them exports only that range, which is the fast way to pull a single quote out of a talk or one song out of a long recording without a separate trimming step. The end time must be later than the start, or the tool will say so rather than exporting silence.
The same picker offers WAV alongside M4A and MP3. WAV is uncompressed PCM, so it is large but avoids adding another lossy generation. If the audio is heading into an editor, a DAW, or a transcription pipeline rather than a player, WAV is the better handoff even though the file is many times bigger.
Everything is local. The video is written into an in-memory filesystem inside the browser tab, processed by the WebAssembly ffmpeg build, and the result is handed back as a download. There is no server-side transcoding and no copy of your file sitting in someone else queue.
- Start and end are in milliseconds and default to the whole clip
- M4A and MP3 are lossy re-encodes; WAV is uncompressed PCM
- The video track is discarded, which is why the output is so much smaller