Quick answer
Online: drop the .amr at formatdrop.com/audio-converter, choose MP3, download — done in seconds, runs locally in your browser. Command line: `ffmpeg -i input.amr -c:a libmp3lame -b:a 64k -ac 1 output.mp3` (64 kbps mono is right for voice). VLC and Audacity also work and require no install if you already have them.
Method 1: Convert AMR to MP3 online (free, in your browser)
- 1
Open the FormatDrop audio converter
Open formatdrop.com/audio-converter in any modern browser. Conversion runs locally via WebAssembly — your AMR file stays on your device. Works on Mac, Windows, Linux, iPhone, and Android with no install.
Go to converter - 2
Drop your AMR file
Drag .amr files into the upload area or click to choose. Batch conversion supported — drop a folder of voicemail recordings and convert them all at once. The converter detects whether your AMR is narrowband (8 kHz, AMR-NB, typical for old phones) or wideband (16 kHz, AMR-WB, slightly higher quality).
- 3
Choose MP3 and bitrate
Select MP3 as output. For voice content (which is what AMR is designed for), 64 kbps mono is the right setting — matches the source quality without wasting bytes. For higher fidelity if you plan to do further editing, choose 128 kbps. Above 192 kbps is overkill for AMR sources because the original AMR audio is already heavily compressed.
- 4
Download the MP3
Single conversions download as one .mp3 file. Batch conversions download as a ZIP. The result plays in every audio app, embeds in web pages, drops into iTunes/Apple Music/Spotify, sends via email — universal compatibility.
Method 2: Convert AMR to MP3 with FFmpeg (best for batch and scripts)
FFmpeg is the standard command-line tool for audio conversion — free, open-source, runs everywhere. Best for batch jobs, scripted workflows, and integration with other tools.
- Install. Mac: `brew install ffmpeg`. Linux: `apt install ffmpeg`. Windows: download from ffmpeg.org and add to PATH.
- Convert one file (voice, mono, 64 kbps): `ffmpeg -i input.amr -c:a libmp3lame -b:a 64k -ac 1 output.mp3`.
- Higher quality: `ffmpeg -i input.amr -c:a libmp3lame -b:a 128k -ac 1 output.mp3`. Going much higher than 128 kbps is wasted because the AMR source is already heavily compressed.
- Force a specific sample rate (e.g., upsample to 44.1 kHz for compatibility with apps that require it): `ffmpeg -i input.amr -c:a libmp3lame -b:a 64k -ar 44100 -ac 1 output.mp3`.
- Batch convert every AMR in a folder: `for f in *.amr; do ffmpeg -i "$f" -c:a libmp3lame -b:a 64k -ac 1 "${f%.amr}.mp3"; done` (Mac/Linux). PowerShell on Windows: `Get-ChildItem *.amr | ForEach-Object { ffmpeg -i $_.FullName -c:a libmp3lame -b:a 64k -ac 1 "$($_.BaseName).mp3" }`.
Note: AMR is voice-optimized at narrow band — boosting MP3 bitrate above 128 kbps doesn't gain audible quality. The 64 kbps mono default is right for voicemail. Use higher bitrates only if you need to do further editing.
Method 3: Convert AMR to MP3 in Audacity (free GUI)
Audacity is the free open-source audio editor — runs on Mac, Windows, Linux. Best when you want to edit the AMR (trim silence, normalize volume, denoise) before exporting to MP3.
- Install Audacity from audacityteam.org (free).
- Audacity needs the optional FFmpeg library to read AMR. Install: macOS via `brew install ffmpeg` or download the FFmpeg installer from Audacity's site. Linux: `apt install ffmpeg` is sufficient. Windows: download Audacity FFmpeg .exe from their site.
- In Audacity: Edit → Preferences → Libraries → 'Locate' next to FFmpeg, point to the FFmpeg binary.
- File → Open → select your .amr file. The waveform appears.
- Optional editing: Effect → Noise Reduction (cleans up phone-recording hiss), Effect → Normalize (boosts quiet voicemails to consistent volume).
- File → Export → Export as MP3. Set bitrate to 64-128 kbps, channel to mono, sample rate to 22050 or 44100 Hz. Click Save.
Note: Audacity is the right tool when you want to clean up AMR audio before MP3 conversion — voicemails often have hum, hiss, or low volume that benefits from light editing. For pure conversion without editing, FFmpeg or browser is faster.
Method 4: Convert AMR to MP3 with VLC (cross-platform, no install if you have it)
VLC is the most-installed media player in the world and quietly includes a full audio/video converter. Free, runs on every desktop OS. Good for one-off conversions.
- Open VLC.
- Media → Convert / Save (Ctrl+R on Windows/Linux, Cmd+Shift+S on Mac).
- Click Add → choose your .amr file. Click 'Convert / Save' button at the bottom.
- Profile dropdown → 'Audio - MP3'. (If not present: click the wrench icon to create a profile with MP3 codec, 64 kbps bitrate, mono channel.)
- Set destination file with .mp3 extension. Click Start. VLC converts in real time (or faster) and saves the MP3.
Note: VLC's converter is convenient but lacks the precision of FFmpeg or Audacity. For quick one-off jobs it's perfect. For batches or scripted workflows, use FFmpeg.
Method 5: Convert AMR to MP3 on iPhone (no app install)
iOS doesn't natively play AMR (and as of iOS 17, support is patchy). To convert on-device, use Shortcuts with the Encode Media action, or the browser-based local converter.
- Easiest: open Safari → formatdrop.com/audio-converter → upload your AMR → choose MP3 → download. Runs entirely in Safari, no upload to a server.
- Shortcuts approach: open Shortcuts → New Shortcut → add 'Encode Media' action. Set Audio Format to MP3, Audio Quality to High. Add 'Save File' action below.
- Configure 'Show in Share Sheet' → Audio. Save the shortcut as 'AMR → MP3'.
- Now in any app showing the .amr file (Files, Mail, Messages), tap and hold → Share → run your shortcut. The MP3 saves to your chosen location.
Note: Shortcuts uses Apple's native encoder — high quality but only works for AMR files iOS can decode (some old phone formats don't decode in iOS). For files that fail in Shortcuts, use the browser converter which has its own decoder.
Method 6: Convert AMR to MP3 on Android
Android natively records and plays AMR but doesn't include a built-in converter. Free apps like 'Audio Converter' (offline) handle the conversion without uploading anywhere.
- Install 'Audio Converter' (offline-capable) from the Play Store.
- Open the app, tap +, select your .amr file from internal storage.
- Choose MP3 as output, set bitrate to 64-128 kbps, channels to mono.
- Tap Convert. The MP3 saves to your Music folder (or your chosen location).
- Alternative for technical users: install Termux from F-Droid, run `pkg install ffmpeg`, then `ffmpeg -i input.amr -c:a libmp3lame -b:a 64k -ac 1 output.mp3`.
Note: On-device offline apps are the right choice for sensitive content (voicemails of personal calls, etc.). Avoid 'free MP3 converter' apps that require a network connection — they upload your audio to ad-supported servers.
When you need to convert AMR to MP3
- 1
Archiving old voicemails before retiring a phone or service
Many carriers let you download voicemails as AMR. To preserve them long-term, convert to MP3 — your kids will be able to play them in 20 years. AMR has no guarantee of future support; MP3 will outlive every codec ever invented.
- 2
Embedding voice recordings in podcasts or videos
Podcast tools (Descript, Audacity, Logic) accept MP3 but most don't accept AMR. Convert any AMR clip you want to drop into a longer production.
- 3
Sharing voice notes from old Nokia/Android phones
Pre-2018 Android Voice Memos and Nokia recordings are AMR. Convert before sharing so the recipient can play them on iPhone, Mac, web, or any modern device.
- 4
Feeding voice recordings to speech recognition or LLMs
Most AI services (OpenAI Whisper, Google Speech-to-Text, AssemblyAI) prefer MP3 or WAV input. Convert AMR to MP3 first, then send to the API.
- 5
Forensic or legal preservation of telecom recordings
Voicemail systems and lawful intercept tools often output AMR. For legal proceedings, archives, or investigations, convert to MP3 with documented timestamps and metadata to ensure the recording plays in any future tool.
Troubleshooting common AMR to MP3 problems
FFmpeg complains 'Unknown encoder libmp3lame'
Your FFmpeg build doesn't include the LAME MP3 encoder. Mac: reinstall via Homebrew with `brew reinstall ffmpeg` (the default Homebrew build includes LAME). Linux: `apt install lame` and rebuild ffmpeg, or use the apt-provided package. Windows: download a 'full' build from gyan.dev/ffmpeg/builds/ that includes libmp3lame. Test: `ffmpeg -encoders | grep -i mp3` should list libmp3lame.
The converted MP3 sounds worse than the AMR source
Two causes. First, you may be encoding MP3 below 64 kbps — anything under 64 kbps mono adds audible artifacts. Bump to 64 kbps. Second, AMR is already heavily compressed (typically 12.2 kbps); the MP3 inherits that quality ceiling regardless of MP3 bitrate. You can't make MP3 sound BETTER than AMR — only the same or worse. For minimum quality loss, use 128 kbps MP3.
Audacity can't open the AMR file
Audacity requires the optional FFmpeg library to read AMR. Edit → Preferences → Libraries → install or locate FFmpeg. Mac: `brew install ffmpeg` then point Audacity to /opt/homebrew/bin/ffmpeg. Linux: `apt install ffmpeg`. Windows: download the special Audacity FFmpeg installer from audacityteam.org (not the standard FFmpeg build).
VLC converts but the MP3 file is empty or 0 bytes
VLC's converter sometimes silently fails on AMR-WB (wideband AMR, 16 kHz). Fix by switching to FFmpeg or specifying a profile manually. Or open VLC's Tools → Preferences → Show settings: All → Stream output → Sout stream → Transcode → set 'Audio sample rate' to 22050.
iPhone Shortcuts says 'Unable to encode media'
iOS sometimes can't decode certain AMR variants (especially AMR-WB). Use the browser-based converter in Safari instead — it has its own decoder that handles all AMR variants. Or convert on a Mac/PC and AirDrop the MP3 back to your phone.
The MP3 file plays but at the wrong speed (chipmunk or slow voice)
Sample rate mismatch. AMR-NB is 8 kHz; if your MP3 was encoded at 44.1 kHz without resampling, playback may be wrong. Add `-ar 44100` to FFmpeg to upsample correctly: `ffmpeg -i input.amr -c:a libmp3lame -b:a 64k -ac 1 -ar 44100 output.mp3`.
Converted MP3 has a click/pop at the start or end
Some AMR encoders include silence padding that becomes audible after MP3 re-encoding. Trim with FFmpeg: `ffmpeg -i input.amr -af 'silenceremove=start_periods=1:start_duration=0.1:start_threshold=-50dB' -c:a libmp3lame -b:a 64k -ac 1 output.mp3`.
Why convert AMR to MP3?
AMR was the right format for 3G-era voice — it crammed intelligible speech into 12.2 kbps when bandwidth was scarce. With modern networks and storage, that compression efficiency doesn't matter much, but the format still shows up: voicemails, old phone recordings, ham radio software, telecom tooling.
MP3 is universal. Every device, every browser, every audio editor, every streaming service plays MP3 natively. Converting AMR to MP3 is the right move whenever you want to share, embed, edit, or archive a voice recording.
The conversion is mechanical — every method in this guide produces a working MP3 from any AMR. The quality ceiling is set by the AMR source (it's already lossy, and you can't recover what was thrown away), so don't expect dramatic improvement. The goal is compatibility, not quality.
For one-off conversion, the browser tool is fastest. For batch jobs, FFmpeg in a shell loop processes hundreds of files in seconds. For audio that needs cleanup (volume normalization, noise reduction), Audacity is the right tool. Pick based on context; the result is the same MP3 either way.
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 converting AMR to MP3 free?
Why don't modern phones play AMR directly?
What's the right MP3 bitrate for voicemail?
Will AMR to MP3 conversion lose quality?
Best free tool for AMR to MP3 on Mac?
Can I batch convert many AMR files?
Why is my MP3 louder than the original AMR?
Does AMR to MP3 conversion preserve metadata?
Will the MP3 work in Spotify, Apple Music, or YouTube?
No account. No upload. Works in any browser.