API reference / Transcoder jobs

Transcoder jobs

Direct transcoding job submission and status, bypassing the asset pipeline.

POST /api/v1/encore/encoreJobs

Submit a transcoding job directly to the transcoder, bypassing the asset pipeline.

Request

Request body (application/json)
{
  "inputs": [
    {
      "uri": "string",
      "analyzed": true
    }
  ],
  "outputFolder": "string",
  "externalId": "string",
  "profile": {
    "name": "string"
  },
  "profileParams": {},
  "progressCallbackUri": "string"
}

Response

Response 200 (application/json)
{
  "id": "string",
  "externalId": "string",
  "status": "string",
  "message": "string"
}

GET /api/v1/encore/encoreJobs/{id}

Get a transcoder job's status directly from the transcoder.

Parameters

NameInTypeRequired
idpathstringrequired

Response

Response 200 (application/json)
{
  "id": "string",
  "externalId": "string",
  "status": "string",
  "message": "string"
}