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

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