Meeting Caption Transcription
Get transcripts based on meeting platforms' native captions.
Recall offers transcripts generated by native meeting captions for no additional charge, and so this transcription method may be particularly attractive for those looking for an economical solution for generating transcripts.
Pros:
- No additional charge
- Accurate diarization - since the transcript is directly based on the underlying separated audio streams, you get perfect diarization out-of-the-box.
Cons:
- No per-word timestamps
- Can be lower quality depending on the meeting platform
- Language cannot be auto-detected
Supported platforms
Platform | Supported? |
---|---|
Zoom* | ✅ |
Google Meet | ✅ |
Microsoft Teams* | ✅ |
Cisco Webex | ❌ |
Slack Huddles | ❌ |
*Native Bots and Personal MS Teams do not yet support meeting captions
Quickstart
-
Start an instant meeting and copy the URL.
-
Call Create Bot while setting the
transcription_options.provider
tomeeting_captions
.Take note of the
id
in the response.
curl --request POST \ --url https://us-east-1.recall.ai/api/v1/bot/ \ --header 'Authorization: Token {RECALL_API_KEY}' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "meeting_url": {MEETING_URL}, "transcription_options": { "provider": "meeting_captions" } }
-
After the bot joins the call, say a few words or sentences with your mic unmuted.
-
Call Get Bot Transcript with the ID of the bot you created.
curl --request GET \ --url https://us-east-1.recall.ai/api/v1/bot/{BOT_ID}/transcript/ \ --header 'Authorization: {RECALL_API_KEY}' \ --header 'accept: application/json'
You'll should see a response in the following form:
[ { "words": [ { "text": "Luke, I am your father.", "end_time": 33.04818725585938, "start_time": 22.65240478515625, "language": null, "confidence": null } ], "speaker": "Darth Vader", "speaker_id": 200, "language": "en", }, ... ]
And that's it! You just created your first transcript using meeting captions 🎉
Take it a step further: Webhooks
Since meeting captions are a method of Real-Time Transcription, you can also receive webhooks as the meeting transcript is generated.
See Real-Time Transcription Webhooks for more info.
Troubleshooting
Zoom
Meeting captions are disabled in-meeting
If a bot didn't generate a when using meeting caption transcription, it's likely that the host had meeting captions disabled.
To allow participants to use meeting captions, meeting captions must be enabled. This setting persists across all Zoom meetings once it's set.
To enable meeting captions, navigate to Host Caption Control Settings while in a Zoom meeting.
Then, enable the setting called Allow Closed Captioning for this meeting
Meeting captions are disabled globally
If the user doesn't see an option to enable meeting captions in their Zoom client, they likely have the setting turned off globally.
To resolve this, simply go to Zoom settings and flip the toggle for Automated captions
Microsoft Teams
If a meeting-caption-based transcript isn't being generated for Microsoft Teams, it's likely that the end user has closed captions disabled for their meetings.
This may also be set at the organization level, so if their setting is reflected appropriately they should check with their admin.
Language support
Meeting platforms' meeting captions currently don't support automatic language detection, and the language typically must be specified by either the host (Zoom/Microsoft Teams), or the end participant themselves (Google Meet).
Zoom
Zoom meeting captions are generated according to the language specified by the host.
Microsoft Teams
Microsoft Teams supports various languages for meeting captions by configuring these at the meeting-level by the host.
Caption settings > Language
Example
Google Meet
Google Meet captions are generated according to the language specified by each individual user. By default, bots default to English.
You can leverage languages other than English for meeting captions in Google Meet by:
- Setting up Signed-In Google Meet Bots
- Signing into the account you just set up
- Joining a google meet meeting while signed into that account, and setting the language to your desired language
This will persist for any of the bots meetings using this Google login.
Updated about 1 month ago