Export.video.toCloudStorage

Creates a batch task to export an ImageCollection as a video to Google Cloud Storage. The collection must only contain RGB images. Tasks can be started from the Tasks tab. "crsTransform", "scale", and "dimensions" are mutually exclusive.

UsageReturns
Export.video.toCloudStorage(collection, description, bucket, fileNamePrefix, framesPerSecond, dimensions, region, scale, crs, crsTransform, maxPixels, maxFrames, priority)
ArgumentTypeDetails
collectionImageCollectionThe image collection to export.
descriptionString, optionalA human-readable name of the task. Defaults to "myExportVideoTask".
bucketString, optionalThe Cloud Storage destination bucket.
fileNamePrefixString, optionalThe string used as the output's prefix. A trailing "/" indicates a path. Defaults to the description.
framesPerSecondNumber, optionalThe framerate of the exported video. Must be a value between 0.1 and 100. Defaults to 1.
dimensionsNumber|String, optionalThe dimensions to use for the exported image. Takes either a single positive integer as the maximum dimension or "WIDTHxHEIGHT" where WIDTH and HEIGHT are each positive integers.
regionGeometry.LinearRing|Geometry.Polygon|String, optionalA LinearRing, Polygon, or coordinates representing region to export. These may be specified as the Geometry objects or coordinates serialized as a string.
scaleNumber, optionalResolution in meters per pixel.
crsString, optionalCRS to use for the exported image. Defaults to the Google Maps Mercator projection, SR-ORG:6627.
crsTransformString, optionalAffine transform to use for the exported image. Requires "crs" to be defined.
maxPixelsNumber, optionalRestrict the number of pixels in the export. By default, you will see an error if the export exceeds 1e8 pixels. Setting this value explicitly allows one to raise or lower this limit.
maxFramesNumber, optionalSet the maximum number of frames to export. By default, a maximum of 1000 frames may be exported. By setting this explicitly, you may raise or lower this limit.
priorityNumber, optionalThe priority of the task within the project. Higher priority tasks are scheduled sooner. Must be an integer between 0 and 9999. Defaults to 100.