Available in Classic and VPC
Get details of the complete (system, custom) image qualities.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v2/qualityProfiles/{qualityId} |
Request headers
For information about the headers common to all Live Station APIs, see Live Station request headers.
Request path parameters
You can use the following path parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
qualityId |
Integer | Required | Image quality ID |
Request example
The request example is as follows:
curl --location --request GET 'https://livestation.apigw.ntruss.com/api/v2/qualityProfiles/****' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'x-ncp-region_code: KR'
Response
This section describes the response format.
Response body
Field | Type | Required | Description |
---|---|---|---|
content |
Object | - | Image quality information |
content.disabled |
Boolean | - | Whether image quality is disabled
|
content.id |
Integer | - | Image quality ID |
content.status |
String | - | Image quality status
|
content.createdTime |
Integer | - | Image quality creation date and time (millisecond)
|
content.genType |
String | - | Settings classification
|
content.name |
String | - | Image quality name |
content.type |
String | - | Image quality type
|
content.video |
Object | - | Video settings information |
content.video.fps |
Float | - | Number of frames per second (fps) |
content.video.bitrate |
Integer | - | Video stream's bitrate (bps) |
content.video.bframes |
Integer | - | Number of B-frames (bidirectional prediction frames) |
content.video.level |
Integer | - | Video codec level
|
content.video.width |
Integer | - | Output video width (pixel) |
content.video.height |
Integer | - | Output video height (pixel) |
content.video.bypass |
Boolean | - | Whether to bypass the video stream
|
content.video.codec |
String | - | Video codec format
|
content.video.orientation |
String | - | Video orientation settings
|
content.video.profile |
String | - | Video codec profile
|
content.video.rateControl |
String | - | Bitrate distribution method
|
content.video.videoH264ParamRefFrames |
Integer | - | H.264 reference frame count
|
content.audio |
Object | - | Audio settings information |
content.audio.codec |
String | - | Audio codec format
|
content.audio.profile |
String | - | Audio codec profile
|
content.audio.samplerate |
Integer | - | Audio sampling rate (Hz)
|
content.audio.channels |
Integer | - | Number of audio channels |
content.audio.bitrate |
Integer | - | Audio stream's bitrate (Kbps) |
content.audio.bypass |
Boolean | - | Whether to bypass the audio stream
|
content.inUseQualitySetNames |
Array | - | List of image quality set names in use
|
content.inUseChannelNames |
Array | - | List of channel names in use
|
Response status codes
For information about the HTTP status codes common to all Live Station APIs, see Live Station response status codes.
Response example
The response example is as follows:
{
"content": {
"disabled": false,
"id": ****,
"status": "CREATED",
"createdTime": 1755134604000,
"genType": "CUSTOM",
"name": "quality000",
"type": "NORMAL",
"video": {
"fps": 60.0,
"bitrate": 204800000,
"bframes": 4,
"level": -1,
"width": 1920,
"height": 1080,
"bypass": true,
"codec": "H264",
"profile": "HIGH",
"rateControl": "VBR",
"videoH264ParamRefFrames": 1
},
"audio": {
"codec": "AAC",
"profile": "LC",
"samplerate": 44100,
"channels": 2,
"bitrate": 320,
"bypass": true
},
"inUseQualitySetNames": [
"setting000",
"setting001",
"setting002"
],
"inUseChannelNames": [
"channel000"
]
}
}