REST Resource: conferenceRecords.recordings
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
资源:录制
JSON 表示法 |
{
"name": string,
"state": enum (State ),
"startTime": string,
"endTime": string,
// Union field destination can be only one of the following:
"driveDestination": {
object (DriveDestination )
}
// End of list of possible types for union field destination .
} |
字段 |
name |
string
仅限输出。录音的资源名称。格式:conferenceRecords/{conferenceRecord}/recordings/{recording} ,其中 {recording} 与会议期间的每个唯一录制会话 1:1 映射。
|
state |
enum (State )
仅限输出。当前状态。
|
startTime |
string (Timestamp format)
仅限输出。录制开始的时间戳。
|
endTime |
string (Timestamp format)
仅限输出。录制结束的时间戳。
|
联合字段 destination 。 destination 只能是下列其中一项:
|
driveDestination |
object (DriveDestination )
仅限输出。录制内容会以 MP4 文件的形式保存到 Google 云端硬盘中。driveDestination 包含云端硬盘 fileId ,可用于使用 Drive API 的 files.get 方法下载文件。
|
DriveDestination
JSON 表示法 |
{
"file": string,
"exportUri": string
} |
字段 |
file |
string
仅限输出。底层 MP4 文件的 fileId 。例如“1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP”。使用 $ GET
https://www.googleapis.com/drive/v3/files/{$fileId}?alt=media 下载 blob。如需了解详情,请参阅 https://developers.google.com/drive/api/v3/reference/files/get。
|
exportUri |
string
仅限输出。用于在浏览器中播放录音文件的链接。例如 https://drive.google.com/file/d/{$fileId}/view 。
|
州
枚举 |
STATE_UNSPECIFIED |
默认值,从不使用。 |
STARTED |
已开始有效的录制会话。 |
ENDED |
此录制会话已结束,但录制文件尚未生成。 |
FILE_GENERATED |
录制文件已生成,可以下载了。 |
方法 |
|
根据录音 ID 获取录音。 |
|
列出会议记录中的录制资源。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[],[],null,["# REST Resource: conferenceRecords.recordings\n\n- [Resource: Recording](#Recording)\n - [JSON representation](#Recording.SCHEMA_REPRESENTATION)\n- [DriveDestination](#DriveDestination)\n - [JSON representation](#DriveDestination.SCHEMA_REPRESENTATION)\n- [State](#State)\n- [Methods](#METHODS_SUMMARY)\n\nResource: Recording\n-------------------\n\nMetadata about a recording created during a conference.\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"state\": enum (/workspace/meet/api/reference/rest/v2/conferenceRecords.recordings#State), \"startTime\": string, \"endTime\": string, // Union field `destination` can be only one of the following: \"driveDestination\": { object (/workspace/meet/api/reference/rest/v2/conferenceRecords.recordings#DriveDestination) } // End of list of possible types for union field `destination`. } ``` |\n\n| Fields ||\n|--------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` Output only. Resource name of the recording. Format: `conferenceRecords/{conferenceRecord}/recordings/{recording}` where `{recording}` is a 1:1 mapping to each unique recording session during the conference. |\n| `state` | `enum (`[State](/workspace/meet/api/reference/rest/v2/conferenceRecords.recordings#State)`)` Output only. Current state. |\n| `startTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. Timestamp when the recording started. |\n| `endTime` | `string (`[Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp)` format)` Output only. Timestamp when the recording ended. |\n| Union field `destination`. `destination` can be only one of the following: ||\n| `driveDestination` | `object (`[DriveDestination](/workspace/meet/api/reference/rest/v2/conferenceRecords.recordings#DriveDestination)`)` Output only. Recording is saved to Google Drive as an MP4 file. The `driveDestination` includes the Drive `fileId` that can be used to download the file using the `files.get` method of the Drive API. |\n\nDriveDestination\n----------------\n\nExport location where a recording file is saved in Google Drive.\n\n| JSON representation |\n|-------------------------------------------------|\n| ``` { \"file\": string, \"exportUri\": string } ``` |\n\n| Fields ||\n|-------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `file` | `string` Output only. The `fileId` for the underlying MP4 file. For example, \"1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP\". Use `$ GET https://www.googleapis.com/drive/v3/files/{$fileId}?alt=media` to download the blob. For more information, see \u003chttps://developers.google.com/drive/api/v3/reference/files/get\u003e. |\n| `exportUri` | `string` Output only. Link used to play back the recording file in the browser. For example, `https://drive.google.com/file/d/{$fileId}/view`. |\n\nState\n-----\n\nCurrent state of the recording session.\n\n| Enums ||\n|---------------------|-------------------------------------------------------------------------------------|\n| `STATE_UNSPECIFIED` | Default, never used. |\n| `STARTED` | An active recording session has started. |\n| `ENDED` | This recording session has ended, but the recording file hasn't been generated yet. |\n| `FILE_GENERATED` | Recording file is generated and ready to download. |\n\n| Methods ------- ||\n|-------------------------------------------------------------------------------------|-----------------------------------------------------------|\n| ### [get](/workspace/meet/api/reference/rest/v2/conferenceRecords.recordings/get) | Gets a recording by recording ID. |\n| ### [list](/workspace/meet/api/reference/rest/v2/conferenceRecords.recordings/list) | Lists the recording resources from the conference record. |"]]