REST Resource: conferenceRecords.transcripts.entries
Resource: TranscriptEntry
Single entry for one user’s speech during a transcript session.
JSON representation |
{
"name": string,
"participant": string,
"text": string,
"languageCode": string,
"startTime": string,
"endTime": string
} |
Fields |
name |
string
Output only. Resource name of the entry. Format: "conferenceRecords/{conferenceRecord}/transcripts/{transcript}/entries/{entry}"
|
participant |
string
Output only. Refers to the participant who speaks.
|
text |
string
Output only. The transcribed text of the participant's voice, at maximum 10K words. Note that the limit is subject to change.
|
languageCode |
string
Output only. Language of spoken text, such as "en-US". IETF BCP 47 syntax (https://tools.ietf.org/html/bcp47)
|
startTime |
string (Timestamp format)
Output only. Timestamp when the transcript entry started.
|
endTime |
string (Timestamp format)
Output only. Timestamp when the transcript entry ended.
|
Methods |
|
Gets a TranscriptEntry resource by entry ID. |
|
Lists the structured transcript entries per transcript. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-23 UTC.
[null,null,["Last updated 2024-09-23 UTC."],[[["`TranscriptEntry` resource represents a single user's speech within a Google Meet transcript session, containing details like participant, transcribed text, language, and timestamps."],["Each entry is identified by a unique resource name and includes essential information for analyzing individual contributions within a meeting."],["You can retrieve individual transcript entries using the `get` method or list all entries for a specific transcript using the `list` method."],["The API provides structured access to transcript data, allowing developers to programmatically analyze and utilize meeting conversations."]]],["The `TranscriptEntry` resource represents a single user's speech in a transcript session. Key data includes the speaker (`participant`), transcribed `text` (up to 10K words), spoken `languageCode`, and the `startTime` and `endTime` of the speech. The resource is identified by a `name`. Data can be accessed via two methods: `get`, which retrieves a single entry, and `list`, which retrieves multiple entries within a transcript. All field data are output only.\n"]]