Browser FFmpeg recipe

Convert M4A to MP3 Online with FFmpeg

Create an MP3 version of an M4A audio file.

Command

Run this FFmpeg command

ffmpeg -i input.m4a -codec:a libmp3lame -b:a 192k output.mp3

When to use it

  • audio compatibility
  • voice memos
  • music sharing

How it works

  1. Upload the M4A file.
  2. Run the MP3 conversion command.
  3. Download the MP3 file.

Option reference

OptionWhat it does
-codec:a libmp3lameEncodes the output as MP3.
-b:a 192kSets the audio bitrate.

Practical notes

  • If the source is already AAC, converting to MP3 re-encodes the audio.
  • Use 128k for speech or 256k for higher-quality music.

FAQ

Why convert M4A to MP3?

MP3 is supported by more older apps and devices than some M4A files.

Can I batch convert files?

The current browser tool runs one command at a time. Use the output file list for commands that create multiple files.