Convert anything using VIDEO-TO-IMAGE


The API for converting any file using VIDEO-TO-IMAGE.

Here you can see all available conversion options which you can use within the "options" section of conversions (see the example JSON below the table).

Here you can see all available conversion options which you can use within the "options" section of conversions (see the example JSON on the right).

Option Name Description
allow_multiple_outputs
Type: boolean
Default: False
If the conversion produces more than one output file, by default all of them are compressed in just one file. Set this option to true if you want a download link for each file.
allow_multiple_outputs_threshold
Type: integer
Minimum: 2
Maximum: 400
download_password
Type: string
Pattern: ^[ -~]{0,1000}$
Example: secret_password
A password to protect the download. To download the file send the password in the x-oc-download-password header or set a cookie named x-oc-download-password. The value contains a comma separated list of passwords.
end_video
Type: string
Pattern: ^\d\d:\d\d:\d\d[.]\d\d\d$
Not mandatory. Trims the end of the video and sets the ending point for frame extraction. The format is HH:MM:SS.MS, where HH = hours, MM = minutes, SS = seconds, and MS = milliseconds. Example 00:02:23.005.
images_per_time_unit
Type: integer
Minimum: True
Maximum: 60
Number of frames to extract per unit of time, as defined by "time_unit" option.
keyframes_only
Type: boolean
Extracts only keyframes, up to the limit set by "time_unit" and "images_per_time_unit" options.
start_video
Type: string
Pattern: ^\d\d:\d\d:\d\d[.]\d\d\d$
Not mandatory. Trims the beginning of the video and sets the starting point for frame extraction. The format is HH:MM:SS.MS, where HH = hours, MM = minutes, SS = seconds, and MS = milliseconds. Example 00:02:23.005.
target_format
Type: string
Enum: bmp eps exr gif ico jpg png svg tiff tga wbmp webp
Specifies the output image format. Defaults to JPG if not set.
time_unit
Type: string
Enum: second minute hour full_video
Time unit for frame extraction. If set to "full_video", frames are evenly spaced throughout the video.

Output Example

POST /v2/jobs HTTP/1.1
Host: https://api.api2convert.com
X-Oc-Api-Key: <your API key here>
Content-Type: application/json
{
    "input": [{
        "type": "remote",
        "source": "https://example-files.online-convert.com/raster%20image/png/example_small.png"
    }],
    "conversion": [{
        "category": "operation",
        "target": "video-to-image",
        "options": {
            <conversion options here>
        }
    }]
}