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

录制文件在 Google 云端硬盘中的导出位置。

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 录制文件已生成,可以下载了。

方法

get

根据录音 ID 获取录音。

list

列出会议记录中的录制资源。