Classic/VPC 환경에서 이용 가능합니다.
전체(System, Custom) 화질의 상세 정보를 조회합니다.
요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
메서드 | URI |
---|---|
GET | /api/v2/qualityProfiles/{qualityId} |
요청 헤더
Live Station API에서 공통으로 사용하는 헤더에 대한 정보는 Live Station 요청 헤더를 참조해 주십시오.
요청 경로 파라미터
요청 경로 파라미터에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
qualityId |
Integer | Required | 화질 아이디
|
요청 예시
요청 예시는 다음과 같습니다.
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'
응답
응답 형식을 설명합니다.
응답 바디
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
content |
Object | - | 화질 정보 |
content.disabled |
Boolean | - | 화질 비활성화 여부
|
content.id |
Integer | - | 화질 아이디 |
content.status |
String | - | 화질 상태
|
content.createdTime |
Integer | - | 화질 생성 일시(밀리초)
|
content.genType |
String | - | 설정 분류
|
content.name |
String | - | 화질 이름 |
content.type |
String | - | 화질 타입
|
content.video |
Object | - | 비디오 설정 정보 |
content.video.fps |
Float | - | 초당 프레임 수(fps) |
content.video.bitrate |
Integer | - | 비디오 스트림의 비트레이트(bps) |
content.video.bframes |
Integer | - | B-프레임(양방향 예측 프레임) 수 |
content.video.level |
Integer | - | 비디오 코덱 레벨
|
content.video.width |
Integer | - | 출력 비디오의 너비(픽셀) |
content.video.height |
Integer | - | 출력 비디오의 높이(픽셀) |
content.video.bypass |
Boolean | - | 비디오 스트림 바이패스 여부
|
content.video.codec |
String | - | 비디오 코덱 포맷
|
content.video.orientation |
String | - | 비디오 방향 전환 설정
|
content.video.profile |
String | - | 비디오 코덱 프로필
|
content.video.rateControl |
String | - | 비트레이트 배분 방식
|
content.video.videoH264ParamRefFrames |
Integer | - | H.264 참조 프레임 수
|
content.audio |
Object | - | 오디오 설정 정보 |
content.audio.codec |
String | - | 오디오 코덱 포맷
|
content.audio.profile |
String | - | 오디오 코덱 프로필
|
content.audio.samplerate |
Integer | - | 오디오 샘플링 레이트(Hz)
|
content.audio.channels |
Integer | - | 오디오 채널 수 |
content.audio.bitrate |
Integer | - | 오디오 스트림의 비트레이트(Kbps) |
content.audio.bypass |
Boolean | - | 오디오 스트림 바이패스 여부
|
content.inUseQualitySetNames |
Array | - | 사용 중인 화질 세트 이름 목록
|
content.inUseChannelNames |
Array | - | 사용 중인 채널 이름 목록
|
응답 상태 코드
Live Station API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 Live Station 응답 상태 코드를 참조해 주십시오.
응답 예시
응답 예시는 다음과 같습니다.
{
"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"
]
}
}