stream_media_status

Specifies a detailed status for a video. If the `state` is `inprogress` or `error`, the `step` field returns `encoding` or `manifest`. If the `state` is `inprogress`, `pctComplete` returns a number between 0 and 100 to indicate the approximate percent of completion. If the `state` is `error`, `errorReasonCode` and `errorReasonText` provide additional details.

APIs.ioEngineeringPlatform

Properties

Name Type Description
errorReasonCode object
errorReasonText object
pctComplete object
state object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-stream-media-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/stream_media_status",
  "title": "stream_media_status",
  "description": "Specifies a detailed status for a video. If the `state` is `inprogress` or `error`, the `step` field returns `encoding` or `manifest`. If the `state` is `inprogress`, `pctComplete` returns a number between 0 and 100 to indicate the approximate percent of completion. If the `state` is `error`, `errorReasonCode` and `errorReasonText` provide additional details.",
  "properties": {
    "errorReasonCode": {
      "$ref": "#/components/schemas/stream_errorReasonCode"
    },
    "errorReasonText": {
      "$ref": "#/components/schemas/stream_errorReasonText"
    },
    "pctComplete": {
      "$ref": "#/components/schemas/stream_pctComplete"
    },
    "state": {
      "$ref": "#/components/schemas/stream_media_state"
    }
  }
}