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 Drive에 저장됩니다. driveDestination 에는 Drive API의 files.get 메서드를 사용하여 파일을 다운로드하는 데 사용할 수 있는 Drive fileId 가 포함되어 있습니다.
|
DriveDestination
Google Drive에 녹화 파일이 저장되는 위치를 내보냅니다.
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로 녹음 파일을 가져옵니다. |
|
회의 기록의 녹화 리소스를 나열합니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-25(UTC)
[null,null,["최종 업데이트: 2025-07-25(UTC)"],[],[],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. |"]]