Method: projects.video.export

동영상을 계산하고 결과를 여러 대상 중 하나에 쓰는 일괄 프로세스를 시작합니다.

HTTP 요청

POST https://earthengine.googleapis.com/v1alpha/{project=projects/*}/video:export

URL은 gRPC 트랜스코딩 문법을 사용합니다.

경로 매개변수

매개변수
project

string

이 요청의 서비스 소비자로 간주되어야 하는 Google Cloud Platform 프로젝트의 프로젝트 ID 또는 프로젝트 번호입니다. 형식은 projects/{project-id}입니다.

승인을 처리하려면 지정된 리소스 project에 대해 다음과 같은 IAM 권한이 필요합니다.

  • earthengine.exports.create

요청 본문

요청 본문에는 다음과 같은 구조의 데이터가 포함됩니다.

JSON 표현
{
  "expression": {
    object (Expression)
  },
  "description": string,
  "videoOptions": {
    object (VideoOptions)
  },
  "fileExportOptions": {
    object (VideoFileExportOptions)
  },
  "requestId": string,
  "workloadTag": string,
  "priority": integer
}
필드
expression

object (Expression)

계산 및 내보낼 동영상으로 평가되는 표현식으로, 이미지 모음으로 표시됩니다.

description

string

사람이 읽을 수 있는 태스크 이름입니다.

videoOptions

object (VideoOptions)

생성할 동영상을 설명하는 기본 옵션입니다.

fileExportOptions

object (VideoFileExportOptions)

동영상을 내보낼 위치와 형식에 관한 옵션입니다.

requestId

string

중복 요청을 감지하는 데 사용되는 고유 문자열입니다. 동일한 비어 있지 않은 requestId를 사용하여 동일한 사용자가 두 번 이상 요청하는 경우 이러한 요청 중 하나만 장기 실행 작업을 성공적으로 시작할 수 있습니다. requestId에는 a..z, A..Z, 0~9 또는 '-' 문자가 포함될 수 있습니다. requestId의 길이는 최대 60자(영문 기준)입니다.

workloadTag

string

사용자가 이 계산을 추적하기 위해 제공한 라벨입니다.

priority

integer

선택사항입니다. 프로젝트 내 내보내기 작업의 우선순위입니다. 우선순위가 높은 작업은 더 빨리 예약됩니다. 0에서 9999 사이의 정수여야 합니다. 설정하지 않으면 기본값은 100입니다.

응답 본문

성공한 경우 응답 본문에 Operation의 인스턴스가 포함됩니다.

승인 범위

다음 OAuth 범위 중 하나가 필요합니다.

  • https://www.googleapis.com/auth/earthengine
  • https://www.googleapis.com/auth/cloud-platform
  • https://www.googleapis.com/auth/devstorage.full_control

자세한 내용은 OAuth 2.0 Overview를 참고하세요.

VideoFileExportOptions

Earth Engine 외부에서 동영상을 파일로 내보내는 옵션입니다.

JSON 표현
{
  "fileFormat": enum (VideoFileFormat),

  // Union field destination can be only one of the following:
  "driveDestination": {
    object (DriveDestination)
  },
  "cloudStorageDestination": {
    object (CloudStorageDestination)
  },
  "gcsDestination": {
    object (GcsDestination)
  }
  // End of list of possible types for union field destination.
}
필드
fileFormat

enum (VideoFileFormat)

동영상을 내보낼 파일 형식입니다. 현재 MP4만 지원됩니다.

통합 필드 destination. 결과를 작성할 위치입니다. destination은 다음 중 하나여야 합니다.
driveDestination

object (DriveDestination)

지정된 경우 Google Drive로 내보내기를 구성합니다.

cloudStorageDestination

object (CloudStorageDestination)

지정된 경우 Google Cloud Storage로 내보내기를 구성합니다.

gcsDestination
(deprecated)

object (GcsDestination)

지정된 경우 Google Cloud Storage로 내보내기를 구성합니다.