transcribtxt
Use case 6 min read2026-05-29

How to transcribe a Google Meet recording (2026 guide)

Get a text transcript from any Google Meet recording — using Google's built-in transcript, Gemini Notes, or a third-party tool for recordings without captions.

Every Google Meet call you record ends up as an .mp4 in your Google Drive. That file is also a full transcript, you just have to get it out. Here are all the methods, from fastest to most manual.

Option 1: Google Meet's built-in transcript (Workspace plans only)

Google Meet can generate a real-time transcript automatically. The feature is available on Business Starter, Business Standard, Business Plus, and Enterprise plans. It is not available on personal Google accounts.

Enable transcripts before the meeting:

  1. Open meet.google.com and start or join a meeting.
  2. Click the Activities icon (bottom right) → Transcripts.
  3. Click Start transcript.

The transcript runs live and is saved to Drive when the meeting ends.

Find the transcript after the meeting:

  1. Open Google Drive.
  2. Go to the Meet Recordings folder (created automatically on first use).
  3. Look for a file named [Meeting name] - Transcript — it's a Google Doc.

The doc contains a timestamped log of what was said. It does not include speaker labels by default unless Gemini Live Notes is enabled separately.

Limitations: English-biased accuracy, no speaker diarization in the plain transcript, and the feature requires the meeting organizer to have an eligible Workspace plan.

Option 2: Gemini Live Notes (Google One AI Premium)

If you have Google One AI Premium or a Workspace plan with Gemini add-on, Google Meet can generate AI meeting notes — a summary with action items rather than a verbatim transcript.

How to use it:

  1. In an active meeting, click ActivitiesGemini notes.
  2. Gemini transcribes and summarizes in real time.
  3. After the meeting, the notes are saved to Drive alongside the recording.

This is useful if you want a summary but not the full word-for-word text. For verbatim transcripts, the plain transcript (Option 1) or a third-party tool (Option 3) gives you more.

Option 3: Upload the recording to TranscribTxt (any plan, including free personal accounts)

This is the most reliable method for anyone on a personal Google account or a Workspace plan without transcript access.

Step by step:

  1. Open Google Drive and locate your Meet recording in the Meet Recordings folder.
  2. Right-click the .mp4 file → Download.
  3. Go to TranscribTxt, upload the file, select the meeting language.
  4. Download the transcript in TXT, SRT, or VTT format.

Processing time: A 1-hour meeting takes roughly 3–5 minutes to transcribe.

Language support: 99 languages. Unlike Google's built-in option, this works for French, Spanish, German, Portuguese, Russian, Japanese, Arabic, and other languages equally well.

No Google Workspace plan is required. The file is deleted from TranscribTxt servers once processing is complete.

Option 4: Whisper (local, unlimited, private)

For sensitive meetings — HR discussions, legal calls, patient consultations — running Whisper locally keeps the audio off any external server.

# Install
pip install openai-whisper

# Transcribe the downloaded Meet recording
whisper "meet-recording.mp4" --language en --model medium --output_dir ./transcripts

Whisper outputs .txt, .srt, and .vtt files. On an M2 MacBook Pro, the medium model transcribes a 60-minute meeting in about 6–8 minutes. Use large-v3 for maximum accuracy on technical or accented speech.

Comparing the options

MethodCostLanguagesSpeaker labelsBest for
Google Meet built-inIncluded (Workspace)English (primarily)NoQuick, Workspace users
Gemini NotesGoogle One AI PremiumEnglishAI summaryMeeting summaries
TranscribTxtFree 5 files/mo99No (Business plan)Any user, any language
Whisper localFree, unlimited100+No (with pyannote: yes)Private/sensitive calls

What to do with the transcript

  • Search past decisions. Ctrl+F through the doc to find what was agreed on without rewatching the recording.
  • Generate action items. Paste the transcript into Claude or ChatGPT: "List all action items and owners from this transcript."
  • Share with absent participants. A doc is faster to skim than a 90-minute recording.
  • Create subtitles. Export as .srt from TranscribTxt and re-attach to the video for accessibility or internal training materials.
  • Archive for compliance. Legal, finance and healthcare teams sometimes need verbatim records of meetings. A transcript is easier to index and search than video.

Frequently Asked Questions

Does Google Meet automatically transcribe meetings?

Yes, but only on paid Google Workspace plans (Business Starter and above). Personal Google accounts do not get automatic transcripts. When enabled, the transcript is saved as a Google Doc in your Drive under 'Meet Recordings'.

How do I get a transcript from a Google Meet recording for free?

Download the .mp4 recording from Google Drive and upload it to TranscribTxt (free, 5 files/month). This works regardless of your Google plan — personal or Workspace.

Where does Google Meet save the transcript?

Google Meet saves the transcript as a Google Doc in the meeting organizer's Google Drive, inside the 'Meet Recordings' folder. The file is shared with all participants.

Can I transcribe a Google Meet recording without a Workspace account?

Yes. Download the video file from Google Drive and upload it to a transcription tool like TranscribTxt. The transcript generation happens outside of Google's system, so no Workspace plan is required.

How accurate is Google Meet's built-in transcription?

Google Meet's transcription works well for clear English speech but struggles with accents, technical jargon, and overlapping speakers. It does not include speaker labels in the exported document. Third-party AI tools typically produce more accurate output.