so.sprk.video.defs

sprk.so

Documentation

extractedAudio object

Audio extracted from the uploaded video for client-side record creation.

Properties

blob blob Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "blob"
  ],
  "properties": {
    "blob": {
      "type": "blob"
    },
    "details": {
      "ref": "so.sprk.sound.defs#audioDetails",
      "type": "ref"
    }
  },
  "description": "Audio extracted from the uploaded video for client-side record creation."
}
jobStatus object

No description available.

Properties

blob blob Optional

No description available.

did string did Required

A decentralized identifier (DID).

error string Optional

No description available.

jobId string Required

No description available.

message string Optional

No description available.

progress integer Optional

Progress within the current processing state.

minimum: 0maximum: 100
state string Required

The state of the video processing job. All values not listed as a known value indicate that the job is in process.

Known values: JOB_STATE_COMPLETED, JOB_STATE_FAILED, JOB_STATE_QUEUED, JOB_STATE_PROCESSING
View raw schema
{
  "type": "object",
  "required": [
    "jobId",
    "did",
    "state"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "blob": {
      "type": "blob"
    },
    "audio": {
      "ref": "so.sprk.video.defs#extractedAudio",
      "type": "ref"
    },
    "error": {
      "type": "string"
    },
    "jobId": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "description": "The state of the video processing job. All values not listed as a known value indicate that the job is in process.",
      "knownValues": [
        "JOB_STATE_COMPLETED",
        "JOB_STATE_FAILED",
        "JOB_STATE_QUEUED",
        "JOB_STATE_PROCESSING"
      ]
    },
    "message": {
      "type": "string"
    },
    "progress": {
      "type": "integer",
      "maximum": 100,
      "minimum": 0,
      "description": "Progress within the current processing state."
    }
  }
}

Lexicon Garden

@