com.qcloud.cos.model.ciModel.job.MediaContainerObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api-bundle Show documentation
Show all versions of cos_api-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries
relocated to different namespaces.
package com.qcloud.cos.model.ciModel.job;
public class MediaContainerObject {
/**
* 容器格式:gif,hgif,webp。hgif 为高质量 gif,即清晰度比较高的 gif 格式图
*/
private String format;
/**
* 分片配置,当format为hls和dash时有效
*/
private MediaClipConfig clipConfig = new MediaClipConfig();
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
public MediaClipConfig getClipConfig() {
return clipConfig;
}
public void setClipConfig(MediaClipConfig clipConfig) {
this.clipConfig = clipConfig;
}
@Override
public String toString() {
return "MediaContainerObject{" +
"format='" + format + '\'' +
'}';
}
}