com.volcengine.model.live.DescribeLiveTranscodeDataResResultTranscodeDataListItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.live;
import com.alibaba.fastjson.JSON;
/**
* DescribeLiveTranscodeDataResResultTranscodeDataListItem
*/
@lombok.Data
public final class DescribeLiveTranscodeDataResResultTranscodeDataListItem {
/**
* 当前时间片内的转码时长,单位为分钟。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Duration")
private Float duration;
/**
* 分辨率。
*
* - 480P:640 × 480;
*
* - 720P:1280 × 720;
*
* - 1080P:1920 × 1088;
*
* - 2K:2560 × 1440;
*
* - 4K:4096 × 21600;
*
* - 0:纯音频流。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Resolution")
private String resolution;
/**
* 聚合时刻。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TimeStamp")
private String timeStamp;
/**
* 视频编码格式,支持的取值和含义如下所示。
*
* - Normal_H264:H.264 标准转码;
*
* - Normal_H265:H.265 标准转码;
*
* - ByteHD_H264:H.264 极智超清;
*
* - ByteHD_H265:H.265 极智超清;
*
* - Audio:纯音频流。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TranscodeType")
private String transcodeType;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy