v1

latestOpenAPI 3.0.2Terms of Use2026-08-061441681.6 MB
transcoders

Update an output

This operation updates an output rendition.

patch/transcoders/{transcoder_id}/outputs/{id}

Path parameters

transcoder_idstring required

The unique alphanumeric string that identifies the transcoder.

idstring required

The unique alphanumeric string that identifies the output rendition.

Request body

Example request

{
  "output": {
    "video_codec": "h264",
    "audio_codec": "aac",
    "aspect_ratio_height": 480,
    "aspect_ratio_width": 848,
    "bitrate_audio": 128,
    "bitrate_video": 1600,
    "framerate_reduction": "1/2",
    "h264_profile": "main",
    "keyframes": "follow_source"
  }
}

Response

Success

Example response

{
  "output": {
    "aspect_ratio_height": 480,
    "aspect_ratio_width": 848,
    "bitrate_audio": 128,
    "bitrate_video": 1600,
    "created_at": "2020-01-29T17:16:21.964Z",
    "framerate_reduction": "1/2",
    "h264_profile": "main",
    "id": "w9vJm3BJ",
    "keyframes": "follow_source",
    "name": "Standard Output: Video (848 x 480) + Audio",
    "output_stream_targets": [
      {}
    ],
    "video_codec": "h264",
    "audio_codec": "aac",
    "transcoder_id": "PblTJm1t",
    "updated_at": "2020-01-31T13:47:33.964Z"
  }
}