Lipsync 2.0

Get a Lipsync 2.0 job

Retrieve the current state of a Lipsync 2.0 job by its job_id.

The response uses the shared job envelope, whose status is one of:

  • PROCESSING — still rendering; the result is empty
  • COMPLETED — done; the result holds the re-synced video
  • FAILED — the job was accepted but rendering failed; the error holds a Lipsync 2.0 failure code

Poll this endpoint until the status is COMPLETED or FAILED. An unknown job_id returns 404 Not Found.

get/v1/lipsync-2.0/{job_id}

Path parameters

job_idstring uuid required

Identifier of the Lipsync 2.0 job, returned when the job was submitted.

Example:123e4567-e89b-12d3-a456-426614174000

Identifier of the Lipsync 2.0 job, returned when the job was submitted.

Headers

X-Veed-Store-IO'0' | '1'

Set to 0 to not store this request's and response's bodies. They will then not be available in your request logs for debugging. Defaults to 1 (stored).

X-Veed-Media-Expiration-Secondsinteger

Number of seconds before signed media URLs returned for this request expire. Defaults to 86400 (1 day).

Response

OK

$schemastring uri

A URL to the JSON Schema for this object.

Example response

{
  "$schema": "https://api.veed.io/schemas/ResourceLipsync20Job.json",
  "data": {
    "result": {
      "video": {
        "content_type": "video/mp4"
      }
    }
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.