Quick answer: For Zoom cloud recordings, download the audio file and run it through Whisper (free). For Zoom Pro accounts, use Zoom's built-in cloud transcription. For local MP4 recordings, use whisper meeting.mp4 --output_format txt. Full guide below.
Where Your Zoom Recording Lives
The right transcription method depends on where your recording is saved:
- Cloud recording (Zoom Pro/Business): Saved to zoom.us — accessible from the Recordings tab
- Local recording (all plans): Saved as MP4 + M4A on your computer in your Zoom folder
- Shared link: Someone sent you a cloud recording link
Method 1: Zoom's Built-In Transcription (Pro/Business Plans)
If you have a Zoom paid plan and recorded to the cloud:
Enable before the meeting:
1. Log in to zoom.us → Settings → Recording
2. Under Cloud Recording, enable Audio transcript
3. Start any meeting → click Record to Cloud
Access the transcript after:
1. Go to zoom.us/recording
2. Find your recording → click the title
3. Download the Audio Transcript (.vtt file)
4. Open in any text editor — it contains the full transcript with timestamps
Cost: Requires Zoom Pro ($15.99/month) or higher.
Method 2: Local MP4 Recording + Whisper (Free, Any Plan)
For recordings saved locally on your computer (the default for Zoom Free accounts):
Your Zoom recordings are typically saved in:
- Windows: `C:\Users\[Username]\Documents\Zoom`
- Mac: `~/Documents/Zoom`
Transcribe with Whisper:
`
pip install openai-whisper
`
`
whisper "Zoom Meeting 2026-05-29.mp4" --model medium --output_format txt
`
For a 1-hour meeting, this takes 4-8 minutes. The output is a .txt file in the same folder with the full meeting transcript.
For timestamped SRT output:
`
whisper "Zoom Meeting 2026-05-29.mp4" --model medium --output_format srt
`
Method 3: Zoom Cloud Recording Link → Whisper
If someone shared a Zoom cloud recording link with you:
Step 1: Open the Zoom recording link → click Download to save the MP4
Step 2: Transcribe with Whisper:
`
whisper downloaded_zoom.mp4 --model medium --output_format txt
`
Method 4: Otter.ai (Real-Time + Post-Meeting)
Otter.ai is the leading Zoom transcription tool with speaker identification:
For future meetings:
1. Connect Otter.ai to your Zoom account (Settings → Integrations)
2. Otter.ai joins your next meeting automatically and transcribes in real-time
3. After the meeting, download the transcript from otter.ai
For existing recordings:
1. Go to otter.ai → Import Audio/Video
2. Upload your Zoom MP4 recording
3. Otter.ai transcribes and identifies speakers
4. Export as .txt, .pdf, or .docx
Free plan: 300 minutes/month of transcription.
Turn a Zoom Transcript into Meeting Notes
Once you have the raw transcript, use this prompt with ChatGPT or Claude:
`
Convert this Zoom meeting transcript into professional meeting notes:
Meeting Date & Participants: [extract from transcript]
Agenda / Purpose: [1 sentence]
Key Discussion Points: [5-7 bullet points]
Decisions Made: [list each decision with context]
Action Items: [table with: Who | What | Due Date]
Next Meeting / Follow-up: [if mentioned]
Keep it concise — one page maximum.
[paste full transcript here]
`
Zoom vs Other Meeting Transcription
| Tool | Cost | Accuracy | Speaker ID | Works on Recordings |
|---|---|---|---|---|
| Zoom built-in | Pro plan only | Good | ✅ | ✅ |
| Whisper (local) | Free | Very high | ❌ | ✅ |
| Otter.ai | Free 300min/mo | Very high | ✅ | ✅ |
| Fireflies.ai | Free (limited) | Very high | ✅ | ✅ |
For most users on free Zoom plans, Whisper is the best option — free, accurate, and works on any saved MP4 recording.