AudioUtils

How to Convert Zoom Recording to MP3 (M4A or MP4 Export)

Zoom saves local recordings as M4A or MP4. Convert them to MP3 in your browser for podcast clips, transcription services, or sharing. No software needed.

Zoom recordings come out the other end as M4A audio plus MP4 video, but a lot of downstream workflows want plain MP3. Podcast hosts standardized on MP3 a decade ago. Gmail's 25 MB attachment limit prefers smaller files. Older transcription services and voicemail systems sometimes choke on AAC. This guide covers every path from a Zoom recording to a usable MP3 — local recordings, cloud recordings, batch conversion of a recurring meeting series, and the FFmpeg one-liner that handles it all.

Where Zoom Stores Recordings

Local recordings save to your machine in a meeting-named folder:

  • macOS: ~/Documents/Zoom/[YYYY-MM-DD HH.MM.SS Meeting Name]/
  • Windows: C:\Users\[username]\Documents\Zoom\[YYYY-MM-DD HH.MM.SS Meeting Name]\
  • Linux: ~/Zoom/[meeting folder]/

Inside that folder you typically see:

  • zoom_0.mp4 — H.264 video plus AAC stereo at ~128 kbps. The full recording.
  • audio_only.m4a — AAC audio track extracted by Zoom during post-processing. Roughly 1 MB per minute.
  • chat.txt — chat log
  • closed_caption.vtt — captions if live transcription was on
  • playback.m3u — playlist file linking the video and audio

The audio_only.m4a is the easiest source for MP3 conversion. If you do not see it, Zoom did not finish post-processing yet — wait for the progress notification to disappear.

Cloud recordings live in your Zoom web portal at zoom.us/recording. Download options:

  • Shared screen with speaker view (MP4 with video and audio)
  • Audio only (M4A)
  • Chat (TXT)
  • Audio transcript (VTT)

Download the M4A directly when available — skip the MP4 entirely if you only need audio.

Path 1: Browser-Based M4A to MP3

The fastest local-recording path:

1. Open the Zoom meeting folder 2. Drag audio_only.m4a onto M4A to MP3 3. Pick a bitrate (192 kbps for general use, 64 kbps mono for transcription, 128 kbps mono for podcast) 4. Click Convert 5. The MP3 lands in your Downloads folder

The conversion runs in the browser via WebAssembly FFmpeg. Files stay on your machine — no upload, useful for sensitive meetings.

Path 2: Browser-Based MP4 to MP3

When you only have the MP4 (cloud recording, recipient missed the audio_only file):

1. Open MP4 to MP3 2. Drop the zoom_0.mp4 file 3. Pick bitrate and convert 4. Download MP3

The converter discards the video stream and re-encodes the AAC audio as MP3. Conversion is one-pass, taking roughly 5–10 seconds per minute of source on a modern machine.

Path 3: FFmpeg Command Line

For batch jobs and recurring meetings, FFmpeg is the right tool:

  • M4A to MP3 at 192 kbps: 'ffmpeg -i audio_only.m4a -b:a 192k zoom.mp3'
  • MP4 to MP3, audio only: 'ffmpeg -i zoom_0.mp4 -vn -b:a 192k zoom.mp3'
  • Compressed for email at 64 kbps mono: 'ffmpeg -i audio_only.m4a -b:a 64k -ac 1 zoom_small.mp3'
  • Highest-quality VBR for podcast publication: 'ffmpeg -i audio_only.m4a -q:a 0 zoom_podcast.mp3'

The '-vn' flag drops the video stream; '-ac 1' downmixes to mono.

Removing Video to Save Space

A 60-minute Zoom MP4 is roughly 200–300 MB. The M4A is ~60 MB. The MP3 at 128 kbps mono is ~28 MB. If long-term storage is the goal:

1. Keep the audio_only.m4a or convert to MP3 64–128 kbps mono 2. Delete the zoom_0.mp4 unless the visual content matters 3. Result: 5x to 10x storage savings per meeting

For a year of weekly hour-long team meetings, that is roughly 12 GB of MP4 versus 1.5 GB of MP3.

Bitrate Choices for Zoom Audio

Zoom recordings are voice content, so the bitrate calculus is different from music:

  • 64 kbps mono MP3: ~28 MB/hour. Intelligible, smallest practical size.
  • 96 kbps mono MP3: ~42 MB/hour. Slightly cleaner, recommended default for archive.
  • 128 kbps mono MP3: ~58 MB/hour. Universal compatibility, podcast standard.
  • 128 kbps stereo MP3: ~58 MB/hour. Wasteful for voice; only use if Original Sound was enabled and the content has stereo elements.
  • 64 kbps Opus mono: ~28 MB/hour. Best quality at smallest size, but Opus is not universally supported.

For team meeting archive, 96 kbps mono MP3 is the sweet spot — small enough to email, intelligible for transcription, plays everywhere.

Batch Processing Recurring Meetings

If your team records the same meeting every week, automate it:

'for f in ~/Documents/Zoom/*/audio_only.m4a; do out="${f%.m4a}.mp3" [ -f "$out" ] || ffmpeg -i "$f" -b:a 96k -ac 1 "$out" done'

This loop converts every audio_only.m4a inside any meeting folder to a 96 kbps mono MP3, skipping any that already have an MP3. Schedule it via cron or launchd to run nightly.

Sharing Workflow

Once converted, the MP3 plays everywhere:

  • Slack: drop in a channel, plays inline
  • Email: under 25 MB attaches directly to Gmail
  • Podcast hosts: Anchor, Buzzsprout, Libsyn, Transistor all accept MP3 as the canonical format
  • Whisper / Otter.ai / Rev / Descript transcription: all accept MP3 directly

For longer recordings that exceed email limits, host on Google Drive or Dropbox and share the link.

Cloud Recording Audio-Only Download

The Zoom web portal at zoom.us/recording offers a separate "Audio only" download for cloud recordings, distinct from the MP4 video download. The audio-only file is M4A — same AAC bytes as the audio track inside the MP4, just without the video. Download workflow:

1. Log in at zoom.us 2. Recordings > Cloud Recordings 3. Click the meeting title 4. Look for the Audio only file in the list (not always the first option) 5. Click the download icon

This skips the larger MP4 download entirely — useful for long meetings on slow connections. The M4A is ready for direct conversion to MP3 if needed, or for ingestion into transcription services that accept M4A directly (most do).

Audio Quality Floor

The quality of any Zoom recording is set during the call by Opus encoding at 24–48 kbps mono in speech mode, or up to 96 kbps stereo with Original Sound enabled. No post-processing recovers detail that was never captured during the live call. The MP3 conversion is just a format change — the underlying audio quality is locked the moment the call ends.

To improve future Zoom recordings: use a USB or XLR microphone, enable Original Sound for music or critical voice, raise the channel bitrate via server boost (only relevant for hosted Zoom Rooms), and ensure each participant has stable internet (wired ethernet beats Wi-Fi for consistent quality).

For broader Zoom format context see convert audio for Zoom. For Google Meet's parallel workflow see how to convert Google Meet recording to MP3. To pull a quotable 30-second clip out of an hour-long meeting before sharing, trim the audio to just the section you need — silence at the start and dead air at the end disappear in two drag handles.