Skip to main content
FormatDrop
How-To Guide

How to Convert AMR to MP3 (Free, Voicemail-Friendly)

AMR (Adaptive Multi-Rate) is the audio codec phones used for voice recording and voicemail throughout the 2000s and into the 3G era. It's still alive today — voicemail systems exporting recordings, ham radio software, older Android voice memos, and a long tail of telecom infrastructure all produce .amr files. The problem is almost nothing plays AMR natively in 2026: not Windows Media Player, not iTunes, not Spotify, not most browsers, not any modern smart speaker. Converting AMR to MP3 makes the audio universally playable, shareable, and embeddable. This guide covers every method (browser-based, command line, Audacity, VLC, mobile apps), the right bitrate for voice content, and why the conversion sometimes sounds worse than expected.

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. 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. 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. 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. 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 2Command line (FFmpeg)

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.

  1. Install. Mac: `brew install ffmpeg`. Linux: `apt install ffmpeg`. Windows: download from ffmpeg.org and add to PATH.
  2. Convert one file (voice, mono, 64 kbps): `ffmpeg -i input.amr -c:a libmp3lame -b:a 64k -ac 1 output.mp3`.
  3. 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.
  4. 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`.
  5. 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 3Audacity

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.

  1. Install Audacity from audacityteam.org (free).
  2. 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.
  3. In Audacity: Edit → Preferences → Libraries → 'Locate' next to FFmpeg, point to the FFmpeg binary.
  4. File → Open → select your .amr file. The waveform appears.
  5. Optional editing: Effect → Noise Reduction (cleans up phone-recording hiss), Effect → Normalize (boosts quiet voicemails to consistent volume).
  6. 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 4VLC Media Player

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.

  1. Open VLC.
  2. Media → Convert / Save (Ctrl+R on Windows/Linux, Cmd+Shift+S on Mac).
  3. Click Add → choose your .amr file. Click 'Convert / Save' button at the bottom.
  4. Profile dropdown → 'Audio - MP3'. (If not present: click the wrench icon to create a profile with MP3 codec, 64 kbps bitrate, mono channel.)
  5. 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 5iPhone (Shortcuts + browser)

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.

  1. Easiest: open Safari → formatdrop.com/audio-converter → upload your AMR → choose MP3 → download. Runs entirely in Safari, no upload to a server.
  2. Shortcuts approach: open Shortcuts → New Shortcut → add 'Encode Media' action. Set Audio Format to MP3, Audio Quality to High. Add 'Save File' action below.
  3. Configure 'Show in Share Sheet' → Audio. Save the shortcut as 'AMR → MP3'.
  4. 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 6Android (Audio Converter app)

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.

  1. Install 'Audio Converter' (offline-capable) from the Play Store.
  2. Open the app, tap +, select your .amr file from internal storage.
  3. Choose MP3 as output, set bitrate to 64-128 kbps, channels to mono.
  4. Tap Convert. The MP3 saves to your Music folder (or your chosen location).
  5. 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?
Yes. The browser converter, FFmpeg, Audacity, VLC, and offline Android apps are all free. Online server-based converters are usually free for small files. The conversion itself is unrestricted — AMR isn't DRM-protected and MP3 patents have all expired.
Why don't modern phones play AMR directly?
AMR was designed for the bandwidth-constrained 3G era. With LTE and 5G, telecom systems migrated to wideband codecs (AMR-WB, EVS, Opus). Modern phones still record voice in AAC or M4A. iOS dropped native AMR support over time; Android still records AMR but most playback apps don't support it. Conversion to MP3 sidesteps the compatibility issue.
What's the right MP3 bitrate for voicemail?
64 kbps mono is the sweet spot. AMR source quality is roughly equivalent to 32-48 kbps MP3, so 64 kbps gives you headroom without waste. Voice content doesn't benefit from stereo (recording is mono) or bitrates above 96 kbps.
Will AMR to MP3 conversion lose quality?
AMR is already lossy, and MP3 is a second lossy encode — so technically yes, you lose a small amount. In practice, AMR is already so heavily compressed that the additional MP3 loss is imperceptible. The conversion is for compatibility, not quality.
Best free tool for AMR to MP3 on Mac?
FFmpeg via Homebrew: `brew install ffmpeg && ffmpeg -i input.amr -c:a libmp3lame -b:a 64k -ac 1 output.mp3`. Or the FormatDrop browser converter if you don't want to install anything.
Can I batch convert many AMR files?
Yes — FFmpeg with a shell loop is the fastest method. Mac/Linux: `for f in *.amr; do ffmpeg -i "$f" -c:a libmp3lame -b:a 64k -ac 1 "${f%.amr}.mp3"; done`. Processes hundreds of files in seconds. PowerShell equivalent works on Windows.
Why is my MP3 louder than the original AMR?
Voicemail AMR files are often recorded at low volume (phone handsets are quiet). Some converters (especially Audacity) auto-normalize to a louder baseline. To preserve original volume: in Audacity, disable Effect → Normalize before export. In FFmpeg, no normalization is applied by default — the MP3 should match source volume.
Does AMR to MP3 conversion preserve metadata?
AMR has minimal metadata (basically none — no title, artist, etc., usually just a filename). MP3 has rich ID3 metadata. The converter can't generate metadata that doesn't exist in the source; you'd add ID3 tags after conversion using a tag editor like Mp3tag or Kid3.
Will the MP3 work in Spotify, Apple Music, or YouTube?
MP3 is universally supported by every music platform. Upload directly to YouTube, embed in podcasts, share on streaming services that allow user uploads. AMR source quality may not meet some platform's quality standards (Spotify rejects audio under 44.1 kHz/16-bit) — re-encode at higher bitrates if uploading to quality-sensitive platforms.
Convert AMR to MP3 Now — Free

No account. No upload. Works in any browser.