The Format Problem With Voice Recordings
Your phone's voice recorder silently picks a format for you. On iPhone, it is M4A (AAC inside an MPEG-4 container). On most Android phones, it is AMR or AAC, depending on the recording app. Some Android apps output OGG. A few professional dictation devices use proprietary DSS or DVF formats.
These formats are efficient for storage on mobile devices, but they cause friction everywhere else: some audio editors cannot open M4A, email clients block certain formats, voice-to-text services prefer WAV, and podcast editing software expects MP3 or WAV. Converting the recording to the right format for your workflow takes under a minute once you know how.
Format Reference: What Your Device Records
| Device / App | Default Format | Container | Typical Bitrate | Can Be Converted? |
|---|---|---|---|---|
| iPhone Voice Memos | M4A (AAC) | MPEG-4 | 32–128 kbps | Yes |
| Google Recorder (Android) | M4A (AAC) | MPEG-4 | 48–128 kbps | Yes |
| Samsung Voice Recorder | M4A or AMR | MPEG-4 / 3GPP | 12–128 kbps | Yes |
| Zoom H-series recorders | WAV or MP3 | WAV / MPEG | Various | Direct use |
| Philips dictation devices | DSS or DS2 | Proprietary | 6–13 kbps | Yes (with DSS decoder) |
| Olympus dictation | DSS or WMA | Proprietary / ASF | 6–64 kbps | Yes |
| WhatsApp audio messages | OGG Opus | OGG | 32 kbps | Yes |
| Telegram voice messages | OGG Opus | OGG | 32–64 kbps | Yes |
Target Formats by Use Case
Before converting, decide what you need the output for:
| Use Case | Best Format | Why |
|---|---|---|
| Podcast editing | WAV or AIFF | Uncompressed for clean editing headroom |
| Podcast delivery | MP3 (128 kbps mono) | Universal playback, small size |
| Transcription services | WAV or MP3 | Most services accept both; WAV for best accuracy |
| Email sharing | MP3 | Small, universally playable |
| Archive storage | FLAC or WAV | Lossless, no quality degradation over time |
| WhatsApp / iMessage | M4A or OGG | Native formats, smallest size |
| Video editing (voice-over) | WAV 48kHz | Matches video audio standard |
| Voice recognition software | WAV 16kHz mono | Many engines require this specific format |
Method 1: Online Conversion (Fastest, No Software)
For one-off conversions, ConvertIntoMP4's MP3 converter accepts M4A, AMR, OGG, and WAV files and converts them to MP3 without installing any software. For WAV output, use the WAV converter.
Steps:
- Locate your voice recording on your phone
- Share it to your computer (AirDrop, Google Drive, USB cable, or email to yourself)
- Upload to the converter
- Download the converted file
For multiple recordings from the same session, the converter supports batch uploads — select all files at once rather than converting one by one.
Method 2: iPhone Voice Memos — Specific Steps
Exporting From Voice Memos
The Voice Memos app on iOS 16+ lets you share recordings as M4A:
- Open Voice Memos
- Tap the recording you want
- Tap the three-dot menu (•••)
- Tap Share
- Choose AirDrop, Save to Files, or Mail to transfer the M4A file
The exported file will be in .m4a format. This is a perfectly good audio format that plays in iTunes/Music, VLC, and most modern players. If your destination software cannot open M4A, convert to MP3 via the M4A to MP3 conversion guide.
Converting Directly on iPhone
If you want to convert without a computer:
- GarageBand for iOS can import M4A and export as compressed AAC (M4A) — not MP3
- Documents by Readdle can sometimes convert audio formats
- The most reliable path is still: export M4A → convert on computer or web tool
Changing Recording Quality
Voice Memos defaults to a compressed format. For higher quality recordings (transcription, music, meetings):
- Go to Settings > Voice Memos > Audio Quality
- Change from Compressed to Lossless
- Lossless recordings export as M4A but use AAC Lossless (ALAC) encoding, significantly improving quality
Method 3: Android Voice Recordings
Android's fragmentation means recording formats vary by manufacturer:
Samsung Voice Recorder
Samsung's app saves as M4A by default but also offers AMR options for lower quality. AMR (Adaptive Multi-Rate) is compressed for speech — very small files (8–13 kbps) but audibly compressed and unsuitable for anything beyond voice intelligibility.
To export: open Samsung Voice Recorder → tap the recording → Share icon → save to Google Drive or send via email.
Google Recorder
Google's Recorder app (Pixel phones, available on Play Store) saves in M4A format. It also includes automatic transcription. Files are accessible via the Files app at Internal Storage/Recordings/ or via Share within the app.
AMR Files — When You Get Stuck With Them
AMR is an annoying format to receive because many desktop players do not handle it. The audio converter hub accepts AMR and converts to MP3 or WAV. You can also use FFmpeg:
ffmpeg -i recording.amr -c:a libmp3lame -q:a 4 output.mp3
AMR audio quality is fundamentally limited — converting to MP3 will not improve the quality, just change the container. If you need better quality, re-record with the quality setting changed in the app.
Method 4: FFmpeg Command-Line Conversion
FFmpeg handles every format mentioned in this guide and is the best option for batch converting multiple recordings.
M4A to MP3 (Single File)
ffmpeg -i "Voice Memo.m4a" -c:a libmp3lame -q:a 3 output.mp3
The -q:a 3 flag uses VBR encoding at approximately 175 kbps — good quality for voice with reasonable file size. For smaller files: -q:a 5 (130 kbps). For higher quality: -q:a 2 (190 kbps).
Batch Convert All M4A Files in a Folder to MP3
for file in *.m4a; do
ffmpeg -i "$file" -c:a libmp3lame -q:a 3 "${file%.m4a}.mp3"
done
On Windows using PowerShell:
Get-ChildItem -Filter "*.m4a" | ForEach-Object {
$output = $_.BaseName + ".mp3"
ffmpeg -i $_.FullName -c:a libmp3lame -q:a 3 $output
}
M4A to WAV (For Transcription or Editing)
ffmpeg -i recording.m4a -c:a pcm_s16le -ar 44100 output.wav
For voice recognition services that require 16kHz mono WAV:
ffmpeg -i recording.m4a -c:a pcm_s16le -ar 16000 -ac 1 output_16k_mono.wav
OGG Voice Messages to MP3 (WhatsApp/Telegram)
ffmpeg -i voice_message.ogg -c:a libmp3lame -q:a 4 output.mp3
Trim a Recording During Conversion
If you only need a portion of a long recording, trim it during conversion to avoid creating a large intermediate file:
ffmpeg -i long_recording.m4a -ss 00:05:30 -to 00:12:15 -c:a libmp3lame -q:a 3 trimmed.mp3
Replace 00:05:30 with the start time and 00:12:15 with the end time. For a visual trim interface without command-line tools, use ConvertIntoMP4's video trimmer, which also handles audio-only files.
Pro Tip: When recording meetings or interviews for transcription, always use your phone's highest quality setting. The extra storage cost (a 1-hour meeting at lossless quality is still under 150 MB) is trivial compared to the frustration of inaudible segments in a compressed recording.
Quality Considerations When Converting Voice
You Cannot Recover Lost Quality
Converting AMR → MP3 → WAV does not recover the quality that AMR compression discarded. Each conversion step can only maintain or reduce quality, never increase it.
If your original recording is low quality, the converted file will also be low quality — but in the new format. The only way to improve quality is to re-record at higher settings.
Sample Rate for Voice
Voice recordings typically use lower sample rates than music:
- 8 kHz — telephone quality (AMR narrow-band). Barely acceptable for intelligibility
- 16 kHz — better telephone quality. Minimum for good voice recognition
- 22.05 kHz — decent voice quality, notably smaller than CD quality
- 44.1 kHz — CD quality. Overkill for voice alone, but standard for compatibility
- 48 kHz — broadcast standard. Use this if the audio will be combined with video
When converting voice recordings, maintaining the original sample rate (or converting up to 44.1 kHz) is fine. Downsampling from 44.1 kHz to 16 kHz for a voice recognition service is acceptable and reduces file size by more than half.
Mono vs Stereo for Voice
Phone recordings are typically mono (one channel). Converting mono to stereo duplicates the single channel — it does not add stereo information and wastes space. When converting for transcription or podcast use, keep the recording mono:
ffmpeg -i recording.m4a -ac 1 -c:a libmp3lame -q:a 3 mono_output.mp3
Transcription Workflow
For converting voice recordings to text, the typical workflow is:
- Export recording from phone (M4A or AMR)
- Convert to WAV 16kHz mono (most transcription services prefer this)
- Upload to transcription service (Otter.ai, Rev, Whisper API, etc.)
Using OpenAI's Whisper API directly:
import openai
client = openai.OpenAI()
with open("recording_16k.wav", "rb") as audio_file:
transcript = client.audio.transcriptions.create(
model="whisper-1",
file=audio_file,
response_format="text"
)
print(transcript)
Whisper accepts MP3, MP4, M4A, WAV, WEBM, and OGG — so you can often skip conversion and upload the original M4A.
Frequently Asked Questions
Why does my iPhone voice memo sound worse after converting to MP3?
The original M4A uses AAC encoding at the same or higher quality than typical MP3. Converting AAC to MP3 is a lossy-to-lossy conversion — both are lossy codecs, and re-encoding adds artifacts on top of the original compression. To avoid double-compression artifacts, export to WAV first (uncompressed), then encode to MP3 from the WAV. Or keep the M4A format if your destination software accepts it.
Can I convert the built-in voice recorder on my Samsung Galaxy?
Yes. The Samsung Voice Recorder app's M4A output is a standard file. Find the recordings in Internal Storage/Voice Recorder/ using the Files app, copy them to your computer, and convert using any audio converter. The audio converter hub handles M4A, AMR, and OGG files without any software.
What's the best format for archiving important voice recordings?
FLAC (Free Lossless Audio Codec) for archival. It is lossless (no quality loss), open-source, and well-supported. File sizes are larger than MP3 but smaller than uncompressed WAV. For typical 60 kbps voice recordings, FLAC reduces file size by about 30% compared to WAV while preserving every bit of the original audio. The FLAC vs MP3 comparison covers the quality and compatibility differences in depth.
How do I convert a WhatsApp voice message to MP3?
WhatsApp stores voice messages as OGG Opus files. On Android, find them at WhatsApp/Media/WhatsApp Voice Notes/. On iPhone, you need to use the Share button within WhatsApp to export the file first. Once you have the OGG file, use FFmpeg or any audio converter to convert to MP3.
Can I improve the audio quality of a noisy recording?
Conversion alone cannot remove background noise — that requires audio processing tools like Adobe Audition's Noise Reduction, iZotope RX, or free tools like Audacity's Noise Reduction effect. Convert to WAV first for editing, apply noise reduction, then export to your target format.
Summary
Voice recordings in M4A, AMR, or OGG format are straightforward to convert using online tools or FFmpeg. The right target format depends on your use case: MP3 for sharing and podcasting, WAV for editing and transcription, FLAC for lossless archival.
For single-file conversions, ConvertIntoMP4's MP3 converter and WAV converter handle all common voice recording formats without any software installation. For batch converting hundreds of recordings, the FFmpeg commands in this guide process an entire folder in one terminal command.



