Forum Discussion
Any available API for live transcript of a meeting
akandarpa - Thanks for reporting your issue.
Yes, you can use the Microsoft Graph API to fetch live transcripts for a Teams meeting. The Graph API provides the callTranscript
resource that allows you to access the live transcript of a meeting in real-time.
To fetch the live transcript text, you can use the GET /calls/{callId}/transcription
API endpoint. This API returns the live transcript as a series of chunks, where each chunk represents a portion of the transcript that has been generated so far.
Ref Doc: callTranscript resource type - Microsoft Graph beta | Microsoft Learn
Thanks,
Nivedipa
-------------------------------------------------------------------------
If the response is helpful, please click Mark as Best Response and like it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate.
Hi,
Where did you find the endpoint? Because obviously the reference doc does not have it and also corresponding resource is provided by another endpoint which is
GET me/onlineMeetings/{meetingId}/transcripts/{transcriptId}/content
GET users/{userId}/onlineMeetings/{meetingId}/transcripts/{transcriptId}/content
Also in the page, there is no information that this API returns live transcription. When we say live I understood as real-time during the meeting we could access the transcription.
- BenissimoNov 24, 2023Copper Contributor
celenmeh Facing the same issue Nivedipa-MSFT, one more question though, i would need the live transcript for 1 on 1 calls instead of meetings is that possible as well? or are you guys gonna implement that?
- ChetanSharma-msftNov 28, 2023
Microsoft
Hello Everyone - Sorry for delay in response.
Currently we don't have any API to fetch live meeting transcript but you can get once the meeting is over:
Reference doc link: https://learn.microsoft.com/en-us/microsoftteams/platform/graph-api/meeting-transcripts/overview-transcripts
Sample link: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/meetings-transcription
For live meeting transcript: we recommend you give your valuable feedback here: https://feedbackportal.microsoft.com/feedback/forum/ad198462-1c1c-ec11-b6e7-0022481f8472- r_o_c_k_D_o_l_lApr 22, 2024Copper ContributorCan you receive transcript without recording meeting?
Is it the same transcript that is generated by live caption engine just in a single container for the whole meeting? Or they are physically different text-to-speech engines?