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.mp3When to use it
- audio compatibility
- voice memos
- music sharing
How it works
- Upload the M4A file.
- Run the MP3 conversion command.
- Download the MP3 file.
Option reference
| Option | What it does |
|---|---|
-codec:a libmp3lame | Encodes the output as MP3. |
-b:a 192k | Sets 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.