Get a streaming upload storyboard
Returns a signed 4x4 WebP storyboard whose 16 tiles are sampled evenly across the requested window (durationMs/16 apart; every 5 seconds for the default 80s window) from a streaming upload source owned by the caller or their workspace. startTimeMs is relative to the source. Only startTimeMs and durationMs control the storyboard; tile count, dimensions, and format are fixed. By default returns a 302 redirect — set ?response=json to get {url, columns, rows, intervalMs} JSON instead.
Path parameters
Streaming upload source identifier
Streaming upload source identifier
Query parameters
Start time in ms on the selected target's playback timeline. Defaults to 0.
Start time in ms on the selected target's playback timeline. Defaults to 0.
Storyboard window duration in ms. Defaults to 80000; the selected target's remaining duration may shorten it. Pass the target's full duration to sample it end to end.
Storyboard window duration in ms. Defaults to 80000; the selected target's remaining duration may shorten it. Pass the target's full duration to sample it end to end.
Set to 'json' to receive {url, columns, rows, intervalMs} instead of the default 302 redirect.
Set to 'json' to receive {url, columns, rows, intervalMs} instead of the default 302 redirect.
Response
Returned when ?response=json is set
Example response
{
"columns": 4,
"intervalMs": 5000,
"rows": 4
}Changes
Changed in 1 of the 3 revisions of this API.15
- ●
deleted the
queryrequest parameterinpointMsrequest-parameter-removed
- ○
added the new optional
queryrequest parameterstartTimeMsnew-optional-request-parameter
- ○
for the
queryrequest parameterdurationMs, the max was increased from80000.00to2147483647.00request-parameter-max-increased
- ○
added the required property
to the response with the statusresponse-required-property-added
- ○
added the required property
to the response with the statusresponse-required-property-added
- ○
added the required property
to the response with the statusresponse-required-property-added
- ●