Image_sequence
Name | Type | Description |
---|---|---|
total_number | integer | The total number of images to create when outputting a sequence of images. minimum: 1 |
start_number | integer | The starting number for files to use when outputting a sequence of images. |
offset_sec | number | The number of seconds to offset the output. |
relative_offset | number | The relative offset (percentage) to offset the output. |
Example image_sequence
{
"uid": "transcode_thumbnails",
"kind": "transcode",
"payload": {
"location": {
"storage_provider": "s3",
"path": "s3://my_bucket/my_folder/thumbnails"
},
"targets": [
{
"uid": "thumbnails",
"file_pattern": "thumb_%05d.jpg",
"existing_files": "replace",
"video": {
"codec": "jpeg",
"width": 256,
"height": 144,
"image_sequence": {
"total_number": 100,
"offset_sec": 0
}
}
}
]
}
}