Skip to main content

Image_sequence

NameTypeDescription
total_numberintegerThe total number of images to create when outputting a sequence of images.
minimum: 1
start_numberintegerThe starting number for files to use when outputting a sequence of images.
offset_secnumberThe number of seconds to offset the output.
relative_offsetnumberThe 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
}
}
}
]
}
}