v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
QualitySets

Set defaults for quality sets

Method to set default quality set for VOD and Live transcoding.

For changing default quality set, specify the ID of the custom quality set from the method GET /quality_sets.

Default value can be reverted to the system defaults (cleared) by setting "id": null.

Live transcoding management:

  • You can specify quality set explicitly in POST /streams method, look at attribute "quality_set_id".
  • Otherwise these default values will be used by the system by default.

VOD transcoding management:

  • You can specify quality set explicitly in POST /videos method, look at attribute "quality_set_id".
  • Otherwise these default values will be used by the system by default.
put/streaming/quality_sets/default

Request body

Response

Successful

Example response

{
  "live": [
    {
      "id": 77,
      "name": "Live 4K UHD 60fps AV1 (custom)",
      "default": true,
      "qualities": [
        {
          "id": 1,
          "name": "vod2160n"
        },
        {
          "id": 2,
          "name": "vod1440n"
        }
      ]
    }
  ],
  "vod": []
}