blackout
Blacks out the live feed until further notice. Use the content_start endpoint to stop a blackout window.
A request body parameter is described below.
Request Parameter | Type | Description |
---|---|---|
offset_from_now_ms | Integer | Requires Live Slicer version 17061500 or higher. Identifies a time relative to now (local system time), in milliseconds, when an operation will take effect. |
offset_time_ms | Integer | Identifies a time relative to the start of the current asset, in milliseconds, when an operation will take effect. |
start_timecode | String | Identifies the video frame at which this operation will take effect. |
Sample request:
POST /blackout HTTP/1.1
{
"start_timecode": "00:15:21;09"
}
add_meta
Adds metadata to the asset being sliced.
A request body parameter is described below.
Request Parameter | Type | Description |
---|---|---|
meta | Dictionary | Assigns the specified metadata to the asset. Use the Asset Info API to access an asset's metadata. |
Sample request:
POST /add_meta HTTP/1.1
{
"meta": {
"rating": "TV-Y7"
}
}